Answer Posted / hrpynux@gmail.com
Every object in C++ has access to its own address through an important pointer called this pointer. The this pointer is an implicit parameter to all member functions. Therefore, inside a member function, this may be used to refer to the invoking object. ... Only member functions have a this pointer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How const int *ourpointer differs from int const *ourpointer?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
What is a class template?
Can we make copy constructor private in c++?
Define macro.
what is multi-threading in C++?
What are the advantages of using typedef in a program?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What are containers in c++?
What is the use of namespace std in C++?
Explain about templates of C++.
How much maximum can you allocate in a single call to malloc()?
What is a vector c++?
What is the best c++ compiler for windows 10?
What are different types of loops in c++?