Boolean constants may have the value of true or false, numeric representation of them is 1 or 0, respectively. True or TRUE, False or FALSE can be used, as well.
ブール定数は、true か false の値をとることができ、数字表現では 1 か 0 です。同様に True、TRUE、False、FALSE
も使うことができます。
Examples:
例:
bool a = true;
bool b = false;
bool c = 1;
Its internal representation is a long 4-byte integer number. Boolean constants can assume the values of 0 or 1.
これらの内部表現は4バイトの整数です。 ブールの定数は 0 あるいは 1 の値を想定することができます。
|