View Single Post
  #2 (permalink)  
Old 12-13-2007, 11:57 AM
staykovmarin staykovmarin is offline
Senior Member
 
Join Date: Nov 2007
Location: Newport, WA
Posts: 141
staykovmarin is on a distinguished road
Its used for constants (note that constants, by style, should be all capital letters, separated by underscores). For something you never want to change by accident in your code:
Code:
public final MAX_NUMBER_USERS = 10;
final will just ensure that that number is never changed.
Reply With Quote