标签: c++
可能重复: When should I make explicit use of the `this` pointer?
可能重复:
When should I make explicit use of the `this` pointer?
在C ++中,使用this指针有什么好处?即首选以下两个片段中的哪一个?
this
class stud { int a; public: void run(int a) { stud::a=a; } };
OR
class stud { int a; public: void run(int a){ this->a=a; } };
为什么不使用第一种情况?