注釋
單行注釋
快捷鍵 Ctrl + /
多行注釋
快捷鍵 Ctrl + Shift + /
文檔注釋
/**
*/
標識符
-
關鍵字
abstract assert boolean break byte case catch char class const continue default do double else enum extends final finally float for goto if implements import instanceof int interface long native new package private protected public return strictfp short static super switch synchronized this throw throws tansient try void volatile while -
Java所有的組成部分都需要名字。類名、變量名以及方法名都被稱為標識符
-
所有標識符都應該以字母(大小寫)和美元符($)和下劃線(_)開頭
-
首字母后可以用數(shù)字
-
Java對大小寫敏感
-
可以用中文,但不推薦
本文摘自 :https://www.cnblogs.com/