Difference between revisions of "Misc"

From Suhrid.net Wiki
Jump to navigationJump to search
(Created page with "This covers Objective 1.3 <u> Legal Identifiers </u> * Can be composed of unicode characters, numbers, currency-symbols and underscores. * Must start with letter, currency char,...")
 
Line 2: Line 2:
  
 
<u> Legal Identifiers </u>
 
<u> Legal Identifiers </u>
* Can be composed of unicode characters, numbers, currency-symbols and underscores.
+
* Can be composed of characters, numbers, currency-symbols and connecting chars such as underscore.
 +
* Definition of characters are interpreted according to the charset.
 +
* NO special chars such as #, :, ;, @, -, etc...
 
* Must start with letter, currency char, underscore but CANNOT start with a digit !
 
* Must start with letter, currency char, underscore but CANNOT start with a digit !
 
* Java identifiers are case-sensitive.
 
* Java identifiers are case-sensitive.

Revision as of 05:04, 20 June 2011

This covers Objective 1.3

Legal Identifiers

  • Can be composed of characters, numbers, currency-symbols and connecting chars such as underscore.
  • Definition of characters are interpreted according to the charset.
  • NO special chars such as #, :, ;, @, -, etc...
  • Must start with letter, currency char, underscore but CANNOT start with a digit !
  • Java identifiers are case-sensitive.