|
Do you need help with your Java programming?
Click here for instant help with your Java code. |
Java Names and Identifiers
A name in Java is used to refer to and entity in a program. There are two forms of names: - Simple names, a simple name is a single identifier. - Qualified names, a qualified name is divided into a name followed by a dot (".") followed by an identifier. Identifiers may be of any length and may contain letters and digits drawn from the entire Unicode character set. An identifier may not begin with a digit though. Here are some examples of valid identifiers: |
int k5; float j; String theCurrentTime; Date the_current_time; |
| Previous | Next | |
Tutorial Home | ||
| Do you know your Java? | |
| Take a Ten-Question-Java-Quiz! | |
Search for code examples on this site
