C++程序到C程序的翻译
class CCar{ public: int price; void SetPrice(int p); }; void CCar::SetPrice(int p) { price=p;} int
作用:指向成员函数所作用的对象