标识符

Posted Otischen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了标识符相关的知识,希望对你有一定的参考价值。

标识符和关键字

public class demo {
    public static void main(String[] args) {
        String demo = "class0" ;
        String Demo = "class1" ;
        //变量使用规则
        //大小写敏感
        // 不可以重名
        //可以中文
        //不可以用关键字
        //不可以用 数字/符号等起头
        System.out.println(demo);
        System.out.println(Demo);
    }
}

以上是关于标识符的主要内容,如果未能解决你的问题,请参考以下文章