-
NOT
Result = NOT Expression |
式の論理否定を計算します。
論理否定演算子は1つのブール式を取り、その逆を返します。 この操作によって返される結果は、次の表に示されています。
数値のNOT演算子は1つの整数値を取り、整数値を返します。 次の表に示すように、演算子は実際に式の各ビットを反転します。
A |
NOT A |
---|---|
0 | 1 |
1 | 0 |
Expressionが文字列またはオブジェクトの場合、Expressionがnullの場合はTRUEを返し、nullでない場合はFALSEを返します。
xamples
Print Not True
False
Print Not False
True
Print 11, Bin(11, 16)
Print Not 11, Bin(Not 11, 16)
11 0000000000001011
-12 1111111111110100
Print 11, Bin(11, 16)
Print Not 11, Bin(Not 11, 16)
Print CByte(11), Bin(CByte(11), 8)
Print CByte(Not 11), Bin(CByte(Not 11), 8)
11 0000000000001011
-12 1111111111110100
11 00001011
244 11110100
Print Not "Gambas"
False
Print Not ""
True
See also
コメント
最新を表示する
NG表示方式
NGID一覧