Coding style question:
Within a class' methods, is it advisable to use this.myField rather than just myField? Always? Or should this never be done, except when myField is shadowed by a method (or constructor) parameter also called myField? (usually in setters)
Is there a convention that guides this?
I tend to use this. a lot out of laziness, because that allows me to pick the field through autocompletion. But maybe there is a downside to this (no pun intended).

coding-styletag for if not for this type of question? I specifically asked for a convention, i.e. references to such. I asked if there are (factual) downsides to usingthis.. Answering this cogently definitely requires specific expertise. This question may be in a "gray area" for some, but it's certainly not that obvious that it absolutely must be closed. Almost all SO questions elicit opinion, debate etc. to some extent. – Jean-François Corbett Oct 5 '11 at 14:57this.is laziness? Omitting it is laziness, and a good one. Havingthiseverywhere is rather distracting, as it is big and stands out in the code. I find it is bad for readability. – PhiLho Oct 6 '11 at 11:20