Java變量的命名規(guī)范

在Java中,變量的命名應(yīng)遵循以下規(guī)范:
1. 使用駝峰命名法:變量名的第一個(gè)單詞的首字母小寫(xiě),后續(xù)單詞的首字母大寫(xiě),例如:myVariable、studentName、totalScore。
2. 使用具有描述性的名稱(chēng):變量名應(yīng)該清楚地描述其代表的數(shù)據(jù)或含義。避免使用模糊或不相關(guān)的名稱(chēng)。例如如果你想要?jiǎng)?chuàng)造一個(gè)人的類(lèi)那使用person或者people作為變量名稱(chēng)就比單獨(dú)使用P更加易于理解
3. 一般來(lái)說(shuō)建議使用名詞或名詞短語(yǔ)代表變量名稱(chēng)
4.每個(gè)變量名稱(chēng)都應(yīng)以字母(a,b,c,d)、下劃線(xiàn)( _ ) 或美元( $ ) 符號(hào)開(kāi)頭。?
5. 避免使用Java關(guān)鍵字作為類(lèi)名。如:
abstract? ? continue? ? for? ? ? ? ?new? ? ? ? ?switch
assert? ? ? default? ? ?if? ? ? ? ? package? ? ?synchronized
boolean? ? ?do? ? ? ? ? goto? ? ? ? private? ? ?this
break? ? ? ?double? ? ? implements? protected? ?throw
byte? ? ? ? else? ? ? ? import? ? ? public? ? ? throws
case? ? ? ? enum? ? ? ? instanceof? return? ? ? transient
catch? ? ? ?extends? ? ?int? ? ? ? ?short? ? ? ?try
char? ? ? ? final? ? ? ?interface? ?static? ? ? void
class? ? ? ?finally? ? ?long? ? ? ? strictfp? ? volatile
const? ? ? ?float? ? ? ?native? ? ? super? ? ? ?while
以下是一些示例符合Java變量命名規(guī)范的示例:
- age
- studentName
- totalScore
- isValidInput
- numberOfItems