public class Hello { public static void main(String[] args) { //输出一个hello world System.out.println("hello world"); } }
public class Hello { public static void main(String[] args) { /*输出一个hello world 输出一个hello world */ System.out.println("hello world"); } }
public class Hello { public static void main(String[] args) { /** * @deprecated dsd */ System.out.println("hello world"); } }
String teacher = "nb"; //定义变量teacher叫nb
所有的标识符都以字母(大小写),$ ,_(下划线)开始,其他不行
String teacher = "nb"; String _teacher = "nb"; String $teacher = "nb"; String Teacher = "nb";
首字符之后可以数字等其他,大部分都是英文
不能使用关键字(例如:void)作变量名
标识符大小写很敏感
String teacher = "nb"; String Teacher = "nb"; //以上表示两种意思
public class Hello { public static void main(String[] args) { String teacher = "nb"; System.out.println(teacher); } } //输出为nb
要求变量的使用符合严格规定,所有变量必须先定义才能使用
整数、小数、字、是非对错
String为字符串
public class Hello { public static void main(String[] args) { String teacher = "nb"; int num=6; System.out.println(num);//引用变量 } } //输出为6