Possible Duplicate:
Java - when to use 'this' keyword
Is it generally good convention to references class attributes with 'this.' even if it would reference the attribute by default anyway? Or should I only use it when absolutely necessary?
It would make things clearer to the programmer, and to avoid any confusing errors if the programmer added any new variables with the same name.