Leon Rosenberg wrote:

You must be scott ambler fan :-)
Or maybe not, he suggests words like a, an, some
public void setValue(int aValue){
        value = aValue;
}

I ended up doing the

public class Foo {
   private int _bar;
   public void setBar(final int bar_) {
       _bar = bar_;
   }
}

syntax favored by a previous employer. Hated it at first, actually came to like it, and lets me quickly (and visually) differentiate params, instance vars, and locals really quickly.

But now my Lisp friends mock me because I use underscores instead of dashes sometimes :/ I sure like being able to use a fairly large character set for symbol names.

Can't please everybody all the time, I reckon.

Dave


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

Reply via email to