Programação funcional - Chamada por valor
Depois de definir uma função, precisamos passar argumentos para ela para obter a saída desejada. A maioria das linguagens de programação suportacall by value e call by reference métodos para passar argumentos para funções.
Neste capítulo, aprenderemos que "chamada por valor" funciona em uma linguagem de programação orientada a objetos como C ++ e em uma linguagem de programação funcional como Python.
No método Call by Value, o original value cannot be changed. Quando passamos um argumento para uma função, ele é armazenado localmente pelo parâmetro da função na memória da pilha. Portanto, os valores são alterados apenas dentro da função e não terão efeito fora da função.
Chamada por valor em C ++
O programa a seguir mostra como Call by Value funciona em C ++ -
#include <iostream>
using namespace std;
void swap(int a, int b) {
int temp;
temp = a;
a = b;
b = temp;
cout<<"\n"<<"value of a inside the function: "<<a;
cout<<"\n"<<"value of b inside the function: "<<b;
}
int main() {
int a = 50, b = 70;
cout<<"value of a before sending to function: "<<a;
cout<<"\n"<<"value of b before sending to function: "<<b;
swap(a, b); // passing value to function
cout<<"\n"<<"value of a after sending to function: "<<a;
cout<<"\n"<<"value of b after sending to function: "<<b;
return 0;
}
Ele produzirá a seguinte saída -
value of a before sending to function: 50
value of b before sending to function: 70
value of a inside the function: 70
value of b inside the function: 50
value of a after sending to function: 50
value of b after sending to function: 70
Chamada por valor em Python
O programa a seguir mostra como Call by Value funciona em Python -
def swap(a,b):
t = a;
a = b;
b = t;
print "value of a inside the function: :",a
print "value of b inside the function: ",b
# Now we can call the swap function
a = 50
b = 75
print "value of a before sending to function: ",a
print "value of b before sending to function: ",b
swap(a,b)
print "value of a after sending to function: ", a
print "value of b after sending to function: ",b
Ele produzirá a seguinte saída -
value of a before sending to function: 50
value of b before sending to function: 75
value of a inside the function: : 75
value of b inside the function: 50
value of a after sending to function: 50
value of b after sending to function: 75