overloading the –> by showing the equivalence between ob.i and ob–>i when operator–>( ) returns the this pointer : overload pointer operator « Operator Overloading « C++ Tutorial






#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;
}








10.6.overload pointer operator
10.6.1.overloading the –> by showing the equivalence between ob.i and ob–>i when operator–>( ) returns the this pointer
10.6.2.Overload -> operator