What characters are valid in a Java class name? What other rules govern Java class names (for instance, Java class names cannot begin with a number)?
|
feedback
|
|
You can have almost any character, including most Unicode characters! The exact definition is in section 3.8 of the Java Language Specification. However see this question for whether or not you should do that. | |||
|
feedback
|
|
Every programming language has its own set of rules and conventions for the kinds of names that you're allowed to use, and the Java programming language is no different. The rules and conventions for naming your variables can be summarized as follows:
From official Java Tutorial | |||
|
feedback
|
|
I'd like to add to bosnic's answer that any valid currency character is legal for an identifier in Java. th€is is a legal identifier, as is €this, and € as well. However, I can't figure out how to edit his or her answer, so I am forced to post this trivial addition. | |||
|
feedback
|
|
Further to previous answers its worth noting that:
I believe the usage of currency symbols originates in C/C++, where variables added to your code by the compiler conventionally started with '$'. An obvious example in Java is the names of '.class' files for inner classes, which by convention have the format 'Outer$Inner.class'
Compare:
with
and
A tiny minority place the underscore after the field name e.g.
| |||
|
feedback
|