20
C++ function call by value • The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter of the function. In this case, changes made to the parameter inside the function have no effect on the argument. By default, C++ uses call by value to pass arguments. In general, this means that code within a function cannot alter the arguments used to call the function. Consider the function swap() definition as follows.

C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

Embed Size (px)

Citation preview

Page 1: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

C++ function call by value

• The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter of the function. In this case, changes made to the parameter inside the function have no effect on the argument.

• By default, C++ uses call by value to pass arguments. In general, this means that code within a function cannot alter the arguments used to call the function. Consider the function swap() definition as follows.

Page 2: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

• // function definition to swap the values. void swap(int x, int y) { int temp; temp = x; /* save the value of x */ x = y; /* put y into x */ y = temp; /* put x into y */ return; }

Page 3: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

#include <iostream>

using namespace std;

// function declaration

void swap(int x, int y);

int main ()

{

// local variable declaration:

int a = 100; int b = 200;

cout << "Before swap, value of a :" << a << endl;

cout << "Before swap, value of b :" << b << endl;

// calling a function to swap the values.

swap(a, b);

cout << "After swap, value of a :" << a << endl;

cout << "After swap, value of b :" << b << endl;

return 0;

}

Page 4: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

– Before swap, value of a :100 – Before swap, value of b :200 – After swap, value of a :100 – After swap, value of b :200

Page 5: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

C++ function call by pointer

• The call by pointer method of passing arguments to a function copies the address of an argument into the formal parameter. Inside the function, the address is used to access the actual argument used in the call. This means that changes made to the parameter affect the passed argument.

• To pass the value by pointer, argument pointers are passed to the functions just like any other value. So accordingly you need to declare the function parameters as pointer types as in the following function swap(), which exchanges the values of the two integer variables pointed to by its arguments.

Page 6: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

/ function definition to swap the values. void swap(int *x, int *y) { int temp; temp = *x; /* save the value at address x */ *x = *y; /* put y into x */ *y = temp; /* put x into y */ return; }

Page 7: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

#include <iostream>

using namespace std;

// function declaration

void swap(int *x, int *y);

int main ()

{ // local variable declaration:

int a = 100; int b = 200;

cout << "Before swap, value of a :" << a << endl;

cout << "Before swap, value of b :" << b << endl;

/* calling a function to swap the values. * &a indicates pointer to a ie. address of variable a and * &b indicates pointer to b ie. address of variable b. */

swap(&a, &b);

cout << "After swap, value of a :" << a << endl;

cout << "After swap, value of b :" << b << endl;

return 0;

}

Page 8: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

• When the above code is put together in a file, compiled and executed, it produces the following result:– Before swap, value of a :100– Before swap, value of b :200– After swap, value of a :200 – After swap, value of b :100

Page 9: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

C++ function call by reference#include <iostream>

using namespace std;

// function declaration

void swap(int& x, int& y);

int main ()

{

// local variable declaration:

int a = 100; int b = 200;

cout << "Before swap, value of a :" << a << endl;

cout << "Before swap, value of b :" << b << endl;

/* calling a function to swap the values.*/

swap(a, b);

cout << "After swap, value of a :" << a << endl;

cout << "After swap, value of b :" << b << endl

; return 0; }

// function definition to swap the values.

void swap(int& x, int& y)

{

int temp;

temp = x; /* save the value at address x */

x = y; /* put y into x */

y = temp; /* put x into y */

return;

}

Page 10: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

When the above code is compiled and executed, it produces the following result:– Before swap, value of a :100– Before swap, value of b :200 – After swap, value of a :200– After swap, value of b :100

Page 11: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

C++ Recursion

• call a function from a same function. This function is known as recursive function and this programming technique is known as recursion.

Page 12: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

#include <iostream> using namespace std; int factorial(int); int main() { int n; cout<<"Enter a number to find factorial: "; cin>>n; cout<<"Factorial of "<<n<<" = "<<factorial(n); return 0; } int factorial(int n) { if (n>1) { return n*factorial(n-1); } else { return 1; } }

OutputEnter a number to find factorial: 4 Factorial of 4 = 24

Page 13: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter
Page 14: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

C++ Function Overloading

• In C++ programming, two functions can have same identifier(name) if either number of arguments or type of arguments passed to functions are different.

• /* Example of function overloading */ int– test() { }– int test(int a){ } – int test(double a){ } – int test(int a, double b){ }

Page 15: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

#include <iostream> using namespace std; void test(int); void test(float); void test(int, float); int main() { int a = 5; float b = 5.5; test(a); test(b); test(a, b); return 0; } void test(int var) { cout<<"Integer number: "<<var<<endl; } void test(float var){ cout<<"Float number: "<<var<<endl; } void test(int var1, float var2) { cout<<"Integer number: "<<var1; cout<<" And float

number:"<<var2; }• Output

– Integer number: 5 – Float number: 5.5– Integer number: 5 And float number: 5.5

Page 16: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

#include <iostream> using namespace std; int absolute(int); float absolute(float); int main() { int a = -5; float b = 5.5; cout<<"Absolute value of "<<a<<" = "<<absolute(a)<<endl; cout<<"Absolute value of "<<b<<" =

"<<absolute(b); return 0; } int absolute(int var) { if (var < 0) var = -var; return var; } float absolute(float var){ if (var < 0.0) var = -var; return var; }

Page 17: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

• Absolute value of -5 = 5• Absolute value of 5.5 = 5.5

Page 18: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

C++ Inline Functions

• C++ inline function is powerful concept that is commonly used with classes. If a function is inline, the compiler places a copy of the code of that function at each point where the function is called at compile time.

• To inline a function, place the keyword inline before the function name and define the function before any calls are made to the function. The compiler can ignore the inline qualifier in case defined function is more than a line.

Page 19: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

#include <iostream>

using namespace std;

inline int Max(int x, int y)

{

return (x > y)? x : y;

}

// Main function for the program

int main( )

{

cout << "Max (20,10): " << Max(20,10) << endl;

cout << "Max (0,200): " << Max(0,200) << endl;

cout << "Max (100,1010): " << Max(100,1010) << endl;

return 0;

}• When the above code is compiled and executed, it produces the

following result:Max (20,10): 20 Max (0,200): 200 Max (100,1010): 1010

Page 20: C++ function call by value The call by value method of passing arguments to a function copies the actual value of an argument into the formal parameter

Defining Inline function within a class

#include<iostream>

Using namespace std;

Class myclass{

Int a,b;

Public:

Void init(ini I, int j){a = I; b=j;}

Void show(){cout<<a<<“ ”<<b<<“\n”} };

Int main()

{

Myclass x;

x.init(10,20);

x.show();

Return 0;

}