一、Identifiers: 標識符
Names of class,method and variable 用於類名、方法名、變量名
Begin with character,'_' or '$' 標識符不能以數字開頭
Case sensitive 大小寫敏感
No length limitation 長度不受限制
標識符不能是java關鍵字,漢字也可以做標識符,當時不建議使用(涉及編碼和跨平台問題)
String 是java的一個類,類名是可以作為標識符的。
Java中sizeof不是運算符,可以作為標識符。
關鍵字、保留字(const,goto,true,false,null)不能作為標識符。
public class Identifiers {
public static void main(String[] args) {
String $abc = "abc1";
String _abc = "abc2";
// 編譯錯誤,標識符不能以數字開頭
// String 8abc="abc3";
String 中國 = "China";
String String = "jaya";
int Integer = 22;
// Java中沒有sizeof運算符,所以sizeof可以作為標識符
String sizeof = "sizeof";
System.out.println(String);// jaya
System.out.println(Integer);// 22
}
}