- C / syntax / adressing member function
- SomeObject->SomeFunction()->AnotherFunction(...);
- const int * SomeFunction() {return ipValue;}
- Object* obj = SomeObject->SomeFunction();
- obj->AnotherFunction();
- class A
- {
- public:
- A* foo();
- A* goo();
- };
- A* a = new A;
- a->foo()->goo()->foo();