When referencing class variables, why do people prepend it with this? I\'m not talking about the case when this is used to disambiguate from method
this
It does nothing at the language level. But it does give immediate indication to someone reading the code about the scope of the variable, which improves understanding of the code.