首页 > def > identifier 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh eo
前一个  下一个  编辑  重命名  撤销  搜索  管理  
文档  
警告! 该页面未翻译。  参见英文版 
identifier
An identifier is a sequence of characters used for representing the name of a variable, a class, a method, a property, a constant or an event.

Here are some valid identifiers: Some identifiers in Gambas are reserved keywords, and so cannot be used as variable names.

To prevent the compiler from interpreting an identifier as a reserved keyword, put it between braces, like that:

DIM {Default} AS String
DIM {Dim} AS Collection