Which is the parameter that is added to every non-static
member function when it is called?
Answers were Sorted based on User's Feedback
Answer / manish kumar
(this) pointer is added.
this pointer contains the address of the object through
which function is called.
this->data member will give the data of the object.
| Is This Answer Correct ? | 49 Yes | 4 No |
Answer / 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 |
Ex:
class Employee{
public:
int member_Function1(){}
void display()
{
do something;
}
};
int main()
{
Employee e1;
e1.member_Functiuon(int a, int b);------> refer below
1...
}
1...
Here e1 is an object of Employee Class.
Now e1.member_Function(int a, int b) means
implicitly the this pointer is applied to the
function as
member_Function(Employee *const this, int a, int b).
Here the implicit this is a constant pointer to the
object's address of type Employee. Once the Object has been
created the address is given to it(e1). the address is
passed as the first argument becoz the function resolving
is faster...
| Is This Answer Correct ? | 12 Yes | 1 No |
What are the three parts of a simple empty class?
What do you mean by inheritance?
Is oop better than procedural?
What does <> mean pseudocode?
how to swap to variables without using thrid variable in java?
What is variable example?
1. Define a class.
What are the two different types of polymorphism?
c++ is a pure object oriented programming or not?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
Round up a Decimal number in c++.. example Note = 3.5 is as 4 3.3 is as 3
3 Answers Accenture, Cognizant, IBM,
Write a program in c++ to read two floating point numbers and find their sum and average.