C++ 에서의 함수호출의 종류는 3가지이다:

Print();
pt.Print();
p->Print();

객체와 주소로 멤버 함수 호출

void (Point::*pf1)() const;
void (Point::*pf2)() (int);