C++ Tutorial/Operator Overloading/overload pointer operator — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
|
(нет различий)
|
Текущая версия на 10:30, 25 мая 2010
overloading the �> by showing the equivalence between ob.i and ob�>i when operator�>( ) returns the this pointer
#include <iostream>
using namespace std;
class myclass {
public:
int i;
myclass *operator->() {return this;}
};
int main()
{
myclass ob;
ob->i = 10; // same as ob.i
cout << ob.i << " " << ob->i;
return 0;
}