Java和C語言是目前非常流行的編程語言,它們都有自己的保留字(關鍵字)。
Java語言中的保留字有:
abstract continue for new switch assert default goto package synchronized boolean do if 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
C語言中的保留字如下:
auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void default goto sizeof volatile do if static while
保留字是指編程語言中已經被特定語法使用的標識符,不能被用作變量名、函數(shù)名等標識符。
在Java和C語言中,保留字的數(shù)量一般比較少,但是它們是編寫程序必須遵守的基本規(guī)則,否則會導致編譯錯誤或意想不到的結果。