Programación funcional: llamada por valor
Después de definir una función, necesitamos pasarle argumentos para obtener el resultado deseado. La mayoría de los lenguajes de programación son compatiblescall by value y call by reference métodos para pasar argumentos a funciones.
En este capítulo, aprenderemos cómo funciona la "llamada por valor" en un lenguaje de programación orientado a objetos como C ++ y un lenguaje de programación funcional como Python.
En el método Call by Value, el original value cannot be changed. Cuando pasamos un argumento a una función, el parámetro de la función lo almacena localmente en la memoria de pila. Por lo tanto, los valores se cambian solo dentro de la función y no tendrán ningún efecto fuera de la función.
Llamar por valor en C ++
El siguiente programa muestra cómo funciona Call by Value en 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;
}
Producirá la siguiente salida:
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
Llamar por valor en Python
El siguiente programa muestra cómo funciona la llamada por valor en 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
Producirá la siguiente salida:
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