标签:span bool ring return bsp ret mes 空间 namespace
#include<iostream> using namespace std; #include<string> int main() { //创建bool数据类型 bool flag = true; cout << flag << endl; flag = false; cout << flag << endl; //bool所占内存空间 cout << sizeof(bool) << endl; system("pause"); return 0; }
标签:span bool ring return bsp ret mes 空间 namespace
原文地址:https://www.cnblogs.com/hackerteen/p/12359989.html