true等于1,false等于0吗?

发布于 2025-01-18 05:17:23 字数 66 浏览 0 评论 0原文

我想知道,true 是否等于 1,false 等于 0 以及如何?

I was wondering, does true equal to 1 and false equal to 0 and how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哆兒滾 2025-01-25 05:17:23

false == 0true = !false。即,任何不为零且可以转换为布尔值的值都不是 false,因此它必须true。需要澄清的一些示例:

if(0)          // false
if(1)          // true
if(2)          // true

if(0 == false) // true
if(0 == true)  // false

if(1 == false) // false
if(1 == true)  // true

if(2 == false) // false
if(2 == true)  // false

cout << false  // 0
cout << true   // 1

true 等于 1,但任何非零 int 评估true,但不等于true1除外)。

false == 0 and true = !false. I.e. anything that is not zero and can be converted to a boolean is not false, thus it must be true. Some examples to clarify:

if(0)          // false
if(1)          // true
if(2)          // true

if(0 == false) // true
if(0 == true)  // false

if(1 == false) // false
if(1 == true)  // true

if(2 == false) // false
if(2 == true)  // false

cout << false  // 0
cout << true   // 1

true is equal to 1, but any non-zero int evaluates to true but is not equal to true except 1.

陈年往事 2025-01-25 05:17:23

是的,这是正确的。 “布尔变量只有两个可能的值:true(1)和false(0)。”
cpp cpp tutorial on布尔值

Yes that is correct. "Boolean variables only have two possible values: true (1) and false (0)."
cpp tutorial on boolean values

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文