What's the catch to create _names _of _fields _like _these in java?

Posted by Roman on Stack Overflow See other posts from Stack Overflow or by Roman
Published on 2010-03-15T18:15:54Z Indexed on 2010/03/15 18:19 UTC
Read the original article Hit count: 126

From time to time I see something like this:

class Clazz {

   private int _goodName;

   private int _anotherGoodName;

   ...
}

I don't get it. It's hard and unusual to read such code. What are the pros?

© Stack Overflow or respective owner

Related posts about java

Related posts about naming-conventions