时间:2021-05-20
标识符:
Java对各种变量、方法和类等要素命名时使用的字符序列称为标识符
凡是自己可以起名字的地方都叫标识符
定义合法标识符的规则:
由26个英文字母大小写,0-9,_或$组成
数字不可以开头
不可以使用关键字和保留字,但是能包括关键字和保留字
Java中严格区分大小写,长度无限制
标识符不能包括空格
取名尽量做到“见名知意”
关于使用中文,Oracle 官网给出的文档是这样描述的:
An identifier is an unlimited-length sequence of Java letters and Java digits, the first of which must be a Java letter.Identifier:IdentifierChars but not a Keyword or BooleanLiteral or NullLiteralIdentifierChars:JavaLetter {JavaLetterOrDigit}JavaLetter:any Unicode character that is a "Java letter"JavaLetterOrDigit:any Unicode character that is a "Java letter-or-digit"A "Java letter" is a character for which the method Character.isJavaIdentifierStart(int) returns true.A "Java letter-or-digit" is a character for which the method Character.isJavaIdentifierPart(int) returns true.The "Java letters" include uppercase and lowercase ASCII Latin letters A-Z (\|u0041-\|u005a), and a-z (\u0061-\|u007a), and, for historical reasons, the ASCII underscore (_, or \|u005f) and dollar sign (\$, or \|u0024). The $ sign should be used only in mechanically generated source code or, rarely, to access pre-existing names on legacy systems.The "Java digits" include the ASCII digits 0-9 (\|u0030-\|u0039).Letters and digits may be drawn from the entire Unicode character set, which supports most writing scripts in use in the world today, including the large sets for Chinese, Japanese, and Korean. This allows programmers to use identifiers in their programs that are written in their native languages.来源:http://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.8
一般习惯:
包名:xxxyyyzzz
类名、接口名:XxxYyyZzz
变量名、方法名:xxxYyyZzz
常量名:XXX_YYY_ZZZ
以上这篇Java 驼峰命名法详解(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
命名规范同一个AngularJS指令,在js文件和html文件中有着不同的命名规范:在js文件中使用标准的小驼峰命名法,在html文件中使用“小写字母+连接符”
命名规范Θ类文件都以.class.php为后缀,使用驼峰法命名,并且首字母大写,例如Pay.class.php;Θ类名和目录_文件名一致。例如:类名Zend_A
1.变量的命名 方法的命名(驼峰命名法)全部小写:单词与单词之间全部下划线(my_namespace)大小写混合:第一个单词首字母小写其他单词首字母大写。规则
在编程过程中一定要注意代码命名的规范性,否则在使用和维护过程中将造成很大的麻烦,这也是一种良好的编码习惯。看下面代码,除了userPass命名规范【小驼峰命名法
局组件和局部组件1.先定义组件Vue.component('组件名',{组件模板对象})注意:组件名不要使用原生的标签名,若组件名定义时用的是驼峰命名法,则调用