C++ 中的 Bool 转 int 转换


我们将在本文中了解如何在 C++ 中转换 Bool 为 int 等价物。Bool 是 C++ 中的数据类型,我们针对它可以使用 truefalse 关键字。如果要转换 Bool 为 int,则可以使用类型转换。始终 true 的值将为 1,而 false 的值为 0。

示例

#include <iostream>
using namespace std;
main() {
   bool my_bool;
   my_bool = true;
   cout << "The int equivalent of my_bool is: " << int(my_bool) << endl;
   my_bool = false;
   cout << "The int equivalent of my_bool is: " << int(my_bool);
}

输出

The int equivalent of my_bool is: 1
The int equivalent of my_bool is: 0

更新于: 30-7-2019

11K+ 浏览

助力您的 职业

完成课程获得认证

立即开始
广告