标识符、关键字、注释
标识符
Java中的包、类、方法、参数和变量的名字由任意顺序的大小字母、数字、下划线(_)、和美元符号($)组成,
标识符:不能以数字开头、也不能是JAVA中的保留关键字
如:yourname、yourname_dxh、li_yourname、$yourname都是合法的标识符
class、67.9,Hello World是不合法的,class是关键字,67.9以数字开头,Hello World中间有空格
关键字
abstract | boolean | break | byte | case | catch | char |
---|---|---|---|---|---|---|
class | continue | default | do | double | else | extends |
false | final | finally | float | for | if | implements |
import | instanceof | int | interface | long | native | new |
null | package | private | protected | public | return | short |
static | synchronized | super | this | throw | throws | transient |
true | try | void | volatile | while | assert | enum |
注释
public class HelloWorld {
/** 这是文档注释
*这种方法注释的内容会被解释成程序的正式文档,并能包含在如:javadoc
*之类工具生成的文档中
* @param 变量
* @return 返回值
*/
public static void main(String[] args) {
System.out.println("Hello World"); // 输出 Hello World
//表示单行注释,注释内容在这里,注释一行,在需要注释的内容前加双斜线(//)
/*
*多行注释,以单斜线加一个星/*开头,以星加一个单斜线结尾
*/
}
}