第八讲——标识符与关键字

标识符与关键字

关键字

是指系统定义的名字和功能是不可引用和更改的不可作为方法名、变量名、类名!!!

abstract assert boolean byte break
case catch char class(类) const
continue default do double else
enum extends final finally float
for goto if impiements import
instanceof int(整型) interface long native
new package private protected public(公用的公共的)
return strictfp shout static(静态的) super
switch synchronized this throw throws
transient try void(无效的、空的) volatile while

标识符

JAVA所有组成部分都需要名字。列如类名称(class)、变量名(String)、方法名(main),都被称为标识符。

public class HelloWorld{
    //HelloWorld=类名称
    public static void main(String[]args){
        //main=方法名
        System.out.println("HelloWorld!!!");
        String 王者荣耀 ="百星王者";
        //王者荣耀=变量名
        System.out.purintln(王者荣耀);
    }
}

标识符的注意点

  • 所有的标识符都应该以大小写字母,美元符¥,或下划线(-)开始(Aa—¥—_)

  • 首字符后可以多使用数字任意组合 (Aa—¥—_—123)

  • *不能使用关键字作为 变量名 或 *方法名 **

  • 区分大小写

  • 可以使用中文进行命名,不建议用拼音

posted @ 2020-08-18 19:08  项晓忠  阅读(110)  评论(0编辑  收藏  举报