As a point of order:

The use of "this" is recommended by the Elements of Java Style, which is
cited in the Commons charter. 

Though, I have myself been victimized by the trap Ceki mentions.

-Ted.


Ceki Gülcü wrote:
> People who repeatedly forget to type "this" represent a minority and
> should perhaps look to exercise a different profession. The problem
> with
> 
> public void setSomething(Object something){
>   this.something = something;
> }
> 
> is
> 
> public void setSomethingComplicated(Object sometingComplicateed){
>   this.somethingComplicated = somethingComplicated;
> }
> 
> --

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to