12
votes
6answers
418 views

Is this[0] safe in C++?

This earlier question asks what this[0] means in C#. In C++, this[0] means "the zeroth element of the array pointed at by this." Is it guaranteed to not cause undefined behavior in C++ to refer to ...
1
vote
5answers
444 views

How does “this” pointer happen to point to different objects?

Suppose I have a class: class test { public: void print(); private: int x; }; void test::print() { cout<< this->x; } and I have these variable definitions: test object1; ...
2
votes
7answers
798 views

Is it okay to use the this pointer? [duplicate]

Possible Duplicates: Is there any reason to use this-> When should this-> be used? When should I make explicit use of the this pointer? When working with pointers to classes, I ...