Why was this deprecated in C++? How is the this pointer in C++ different than this in Java?
Or is Wikipedia just wrong
Early versions of C++ would let the this pointer be changed; by doing so a programmer could change which object a method was working on. This feature was eventually deprecated, and now this in C++ is const .

const. – MSalters Sep 27 '11 at 8:37thisis notconst.thisis an rvalue. And when I enter the edit mode in Wikipedia I already see "[[rvalue]]" there (someone edited it apparently), but the main page still says "const". – AndreyT Sep 27 '11 at 15:29