跳到内容

BlitzMax/语言/标识符

来自维客书,开放世界的开放书籍

标识符用于为常量、变量、函数和用户定义类型命名。

标识符以字母或下划线开头,后跟任意组合的字母、数字或下划线。例如,以下都是有效的标识符

player1_up
your_name
_hello_world_

BlitzMax 中的标识符不区分大小写。这意味着标识符 helloHelloHELLO 均被视为相同的标识符。

以下标识符已预留给 BlitzMax 语言使用,不能作为通用标识符

Strict Module ModuleInfo Framework
End Return Continue Exit Assert
Public Private
True False Pi Null Self Super
Byte Short Int Long Float Double Object String
Var Ptr VarPtr Chr Len Asc SizeOf Sgn Abs Min Max Mod
Shl Shr Sar Not And Or
New Release Delete
Incbin IncbinPtr IncbinLen
Include Import Extern EndExtern
Function EndFunction
Type EndType Extends
Method EndMethod
Local Global Const Field
Abstract Final
Rem EndRem
If Then Else ElseIf EndIf
For To Next Step EachIn
While Wend
Repeat Until Forever
Select Case Default EndSelect
Try Catch EndTry Throw
Goto DefData ReadData RestoreData
Alias
华夏公益教科书