You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// // Use this pointer to get the address of caller or current object. define a class A and a member function that returns the address of caller object.
2
+
3
+
// // Header files
4
+
#include<iostream>
5
+
6
+
// // use namespace
7
+
usingnamespacestd;
8
+
9
+
// // define class A
10
+
classA
11
+
{
12
+
13
+
public:
14
+
// // instance member function that returns the address of caller or current object
15
+
A *getAddress()
16
+
{
17
+
returnthis; // this pointer points to the current object
Copy file name to clipboardexpand all lines: 10_this_pointer/05_reference_of_caller_object.cpp
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// // Use this pointer to get the address of calling or current object. define a class A and a member function that returns the address of calling object.
1
+
// // Use this pointer to get the reference of caller object. define a class A and a member function that returns the reference of caller object.
0 commit comments