Skip to content

Commit 81eb266

Browse files
committed
add: cpp-programming-questions
1 parent 657e220 commit 81eb266

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// // 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+
using namespace std;
8+
9+
// // define class A
10+
class A
11+
{
12+
13+
public:
14+
// // instance member function that returns the address of caller or current object
15+
A *getAddress()
16+
{
17+
return this; // this pointer points to the current object
18+
}
19+
};
20+
21+
// // Main Function Start
22+
int main()
23+
{
24+
A a1, *ptr;
25+
26+
// // get address of a1
27+
ptr = a1.getAddress();
28+
29+
cout << "\nAddress of Object (a1) => " << ptr;
30+
31+
cout << endl; // Add new line
32+
cin.ignore();
33+
return 0;
34+
}
35+
// // Main Function End

10_this_pointer/05_reference_of_caller_object.cpp

+1-1
Original file line numberDiff line numberDiff 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.
22

33
// // Header files
44
#include <iostream>

0 commit comments

Comments
 (0)