What is the difference between pass by value,pass by
pointer,pass by reference in the catch block in the
exception handling in c++
Answer Posted / guest
$ pass by value: it does not change the content of the
argument variable in the calling function even if they
changed in the called function.Because the content of the
actual parameter in the caller is copied to the
formalparameter of the callee.
so change to the parameter withen the function
will effect only the copy.
$ pass by pointer or pass by address:in this the address of
actual parameters is passed i.e address of the variable
copied in the called function.
so any change to the parameter within the
function will reflect to the caller function parameter i.e
actual parameters are modified.
$ pass by referance : it has syntax of pass by value and
funcionality of pass by pointer.
i.e
the referance type formal parameter are accessed in the same
way as normal value parameters but if any change to them
will also reflected to the actual parameter.
see the diff:
P by V:
int main()
{
int a,b;
f(a,b);//caller
}
f(int x, int y);//called
$P by P:
int main()
{
int a,b;
f(&a,&b);//caller
}
f(int *x, int *y);//called
$ P by R:
int main()
{
int a,b;
f(a,b);//caller
}
f(int &x, int &y);//called
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
Why do we use oop?
What is the oops and benefits of oops programming?
how to get the oracle certification? send me the answer
Plese get me a perfect C++ program for railway/airway reservation with all details.
What is the benefit of oop?
What is meant by multiple inheritance?
What is a class oop?
What are the 4 main oop principles?
c++ program to swap the objects of two different classes
How to improve object oriented design skills?
What does <> mean pseudocode?
can inline function declare in private part of class?
What is the fundamental idea of oop?
What is overloading in oop?
What does it mean when someone says I oop?