BTst
Result = BTst ( Number , Bit )
如果
Number 的第
Bit 位是1,则返回
TRUE。最低位是第0位。
Number 的类型可以是
Byte、
Short、
Integer或者
Long。
Number 的类型决定
Bit 的取值范围。
错误
示例
PRINT 15, Bin(15, 16)
PRINT BTst(15, 1)
PRINT 13, Bin(13, 16)
PRINT BTst(13, 1)
13 0000000000001101
False
参见