标识符啊
标识符:
1.只能以大小写字母,下划线和$符号开始
2.不能用关键字当标识符,不用数字开头
3.标识符大小写敏感
public static void main(String[] args) {
String hello="xiaowu";
String $he="$fuhao";
String _she="xiahua";
String He="daxie";
String he = "xiaoli";
System.out.println("hello world");
//JAVA强类型语言,较安全,定义一个类型若不转换,就一直是定义的类型
}
}