C++ 中的 Bool 转 int 转换
我们将在本文中了解如何在 C++ 中转换 Bool 为 int 等价物。Bool 是 C++ 中的数据类型,我们针对它可以使用 true 或 false 关键字。如果要转换 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
广告