Javaラクダ峰の命名方法について詳しく説明します。


識別子:
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 NullLiteral
IdentifierChars:
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
一般的な習慣:
 包名:xxyyzz
 クラス名、インターフェース名:XxxyZzz
変数名、メソッド名:xxYyZzz
定数名:XXX_YYY_ZZ
以上のJavaラクダ峰の命名法の詳細(必見編)は小編が皆さんに提供した内容の全部です。参考にしていただければと思います。どうぞよろしくお願いします。