问题
Is there a lint script that will enforce use of this for class variables?
Ex -
class A {
int var1;
void func() {
return var1;
}
}
should be -
class A {
int var1;
void func() {
return this->var1;
}
}
来源:https://stackoverflow.com/questions/48186162/cpp-lint-can-you-enforce-use-of-this-for-class-variables