Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 Bool에서 int로 변환

<시간/>

여기서는 C++에서 bool을 int로 변환하는 방법을 살펴보겠습니다. Bool은 C++의 데이터 유형이며 true를 사용할 수 있습니다. 또는 거짓 그것을 위한 키워드. bool을 int로 변환하려면 typecasting을 사용할 수 있습니다. 항상 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