Please let me explain that # can not use in java identifier. For example. int e#;
And also, let me know that # is used in java and where to use?
Please let me explain that # can not use in java identifier. For example. int e#;
And also, let me know that # is used in java and where to use?
Because it's not a valid symbol in the language. Just as you can't do:
int HELLO+*/\Variable;
See 3.8. Identifiers in the Java specification:
An identifier is an unlimited-length sequence of Java letters and Java digits, the first of which must be a Java letter.
http://docs.oracle.com/javase/specs/jls/se7/html/jls-3.html#jls-3.8
I think you need to read this:
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/variables.html
Ask Oracle afterwards, if you still don't know!