勵志

勵志人生知識庫

保留字有哪些

保留字是在高級語言中已經定義過的字,程序員不能再將這些字作爲變量名、過程名或函數名使用。每種程序設計語言都規定了自己的一套保留字。例如:

Python。包括False、None、True、and、as、assert、break、class、continue、def、del、elif、else、except、finally、for、from、global、if、import、in、is、lambda、nonlocal、not、or、pass、raise、return、try、while、with、yield等。

C語言。包括int、long、short、float、double、char、unsigned、signed、const、void、volatile、enum、struct、union、if、else、goto、switch、case、do、while、for、continue、break、return等。

Java。包括public、protected、private等,這些主要用於修飾類(接口、抽象類)、方法、屬性等。

JavaScript。包括abstract、double、goto等。