I have the following code:
class A { private: int x; public: A() { x = 90; } A(A a1, A a2) { a1.x = 10; a2.x
Short answer: In member methods of class A, all the members of (object/pointer and static member) class A can be accessed.
class A
static