标识符、关键字、注释
一、标识符
Java中的包、类、方法、参数和变量的名字由任意顺序的大小字母、数字、下划线(_)、和美元符号($)组成,
标识符:不能以数字开头、也不能是JAVA中的保留关键字
如:yourname、yourname_dxh、li_yourname、$yourname都是合法的标识符
class、67.9,Hello World是不合法的,class是关键字,67.9以数字开头,Hello World中间有空格
二、关键字
Java中的关键字
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 |
三、注释
- 单行注释:
//表示单行注释,注释内容在这里,注释一行,在需要注释的内容前加双斜线(//)
- 多行注释:
/* *多行注释,以单斜线加一个星(/*)开头,以星加一个单斜线(*/)结尾 */
- 文档注释
/** *文档注释 *以单斜线加两个星形标记开头(/**),以一个星形标记加一个斜线(*/)结尾 *这种方法注释的内容会被解释成程序的正式文档,并能包含在如:javadoc *之类工具生成的文档中 */
时间: 2024-12-24 15:16:17