// // Created by light on 19-12-9. // #include using namespace std; // pImpl: Pointer-to-Implementation class private_foo; class foo { public: foo(); ~foo(); void bar(); private: private_foo *pImpl; }; class private_foo { public: void bar() { cout<<"private_foo invoke bar funciton."<bar(); } int main() { foo f; f.bar(); }