標(biāo)識(shí)符是腳本中變量,函數(shù)和標(biāo)簽的名稱。
Nashorn中的標(biāo)識(shí)符是一個(gè)Unicode字符序列,具有以下規(guī)則:
以下是有效標(biāo)識(shí)符的示例:
Id _id e$Id num1
以下是無(wú)效標(biāo)識(shí)符:
4num //Cannot start with a digit emp id //Cannot contain spaces emp+id //Cannot contains the + sign break //break is a reserved word and cannot be used as an identifier
Nashorn中保留字的列表用作關(guān)鍵字
break do instanceof typeof case else new var catch finally return void continue for switch while debugger function this with default if throw delete in try
Nashorn未來(lái)保留詞的列表
class enum extends super const export import
Nashorn未來(lái)保留字的列表在嚴(yán)格模式
implements let private public yield interface package protected static
Nashorn支持兩種類型的注釋:
在Nashorn中編寫(xiě)注釋的語(yǔ)法與Java的語(yǔ)法相同。
以下是注釋的示例:
// A single-line comment var Id; /* A multi-line comment */ var et; var d;
更多建議: