一、 关键字
1.abstract() double(双精浮点型) int (整型:4个字节) strictfp**
2.boolean() else() interface() super()
3.break() extends() long(长整型) switch
4.byte() final() native() synchronized()
5.case() finally() new() this()
6.catch() float(浮点型) package() throw()
7.char(字符:1个字节) for() private() throws()
8.class() goto*() protected() transient()
9.const*() if public try
10.continue() implements() return() void()
11.default () import() short(短整型) volatile()
12.do() instanceof() static() while()
二、标识符
1. 标识常量、变量、数据类型、类和方法
Pubiic class HelloWorid1{
Public static void main(String[] args) {String message= “Hello Word”;myPrint(message);java变量的数据类型分为两种
}
Private static void mayPrint(String s) {
System.out.Println(s);
}
}
2.组成规则
(1)字母(A~Z、a~z)、特殊符号($、_)和数字(1~9)
(2)第1个符号不能为数字
(3)不能为关键词、true、false、null
(4)区分大小写
例如:point4 5w A% thisPicture $currentValue OK _23b y_123 #length a+b if
5w A% # length a+b if
3.标识符的一般约定
(1)表示常量的标识符全部大写,如RED
(2)表示类名的标识符用大写字母开始,如MyCar
(3)表示共有方法和实例变量的标识符用小写字母开始,后面的描述性词语以大写开始,如getCurrentValue
(4)表示私有或局部变量的标识符全部用小写字母,如next_value
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论