View Single Post
  #7 (permalink)  
Old 06-28-2008, 08:47 PM
fishtoprecords's Avatar
fishtoprecords fishtoprecords is offline
Senior Member
 
Join Date: Jun 2008
Posts: 459
fishtoprecords is on a distinguished road
Java is not C circa 1989. There is no reason to use Hungarian notation, per Microsoft's early Windows SDK.

There is plenty of reasons to avoid Hungarian.

I ususaly make the function parameters' names be related to their use, but not exactly the same as the private members.

Code:
private String fname; public void setFirstName(String aFname) { fname = aFname; }
Reply With Quote