标签:使用 不能 code 静态 turn ice set oid ++
1.C++程序到C程序的翻译
class Test { public: int price; void setPrice(int p); }; Test::setPrice(int p) { price=p; }
struct Test { int price; }; void setPrice(struct Test* this,int p) { this->price=p; }
2.其作用就是指向成员函数所作用的对象
3.特殊用法:return *this;返回当前操作的对象
4.静态成员函数中不能使用this指针
标签:使用 不能 code 静态 turn ice set oid ++
原文地址:https://www.cnblogs.com/-Asurada-/p/10661313.html