标签:lse 规则 void 组成 bre table 大小写 修饰符 getname
Java标识符由数字,字母和下划线(_),美元符号($)组成。在Java中是区分大小写的,首位不能是数字!
以下标识符合法:
$name _1_name Static
以下标识符非法:
#name 1_name static
注意:标识符不能与关键字冲突,关键字可以理解成系统已存在的标识符,同一标识符不能重复命名。
大驼峰命名法:MyName
小驼峰命名法:myName
包名: com.weiyi2020(全部小写)
类或者接口:HelloWorld(大驼峰命名)
方法或者变量:getName(小驼峰命名)
常量:HELLO_WORD(全部大写,用_分隔单词)
关键字 | |
---|---|
类 | class、interface、extends、implements、enum |
对象 | new、instanceof、this、super |
包 | parkage、import |
数据类型 | byte、char、int、float、double、boolean、short、long |
分支 | if、else、switch、case、break、continue |
循环 | do、while、for |
方法 | void、return |
异常 | try、catch、throw、throws、finally |
修饰符 | Abstract、final、private、protected、public、static、transient、synchronized、volatile、native、assert、strictfp、default |
保留字 | const、goto |
标签:lse 规则 void 组成 bre table 大小写 修饰符 getname
原文地址:https://www.cnblogs.com/weiyi2020/p/12356358.html