關鍵字的定義和特點
阿新 • • 發佈:2018-08-17
xtend ase lse 訪問 cat pub 類之間關系 switch bstr 定義:被Java語言賦予了特殊含義,用作專門用途的字符串(單詞)
特點:關鍵字中所有字母都為小寫
特點:關鍵字中所有字母都為小寫
用於定義數據類型的關鍵字:
class interface enum byte short int long float double char boolean void
用於定義數據類型值的關鍵字:
true false null
用於定義流程控制的關鍵字:
if else switch case default while do for break continue return
用於定義訪問權限修飾符的關鍵字: private protected public
用於定義類,函數,變量修飾符的關鍵字:
abstract final static synchronized
用於定義類與類之間關系的關鍵字:
extends implements
用於定義建立實例及引用實例,判斷實例的關鍵字:
new this super instanceof
用於異常處理的關鍵字:
try catch finally throw throws
用於包的關鍵字:
package import
其他修飾符關鍵字:
native strictfp transient volatile assert
關鍵字的定義和特點