Which is the parameter that is added to every non-static
member function when it is called?
Answer Posted / arun
"this" (i.e. Pointer to the object which call the member
function) is passed as the argument when a member function
is called.
| Is This Answer Correct ? | 21 Yes | 1 No |
Post New Answer View All Answers
What are the benefits of interface?
What is a function in oop?
What is the real life example of polymorphism?
how to get the oracle certification? send me the answer
What is difference between data abstraction and encapsulation?
What are the two different types of polymorphism?
Explain virtual inheritance?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
write a program to find 2^n+1 ?
What is destructor example?
Get me a number puzzle game-program
Advantage and disadvantage of routing in telecom sector
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is the full form of oops?
What is encapsulation in oop?