当前位置: 代码迷 >> 综合 >> 判断数据类型的函数 —— typeid()
  详细解决方案

判断数据类型的函数 —— typeid()

热度:43   发布时间:2023-12-06 05:16:47.0

//
头文件
#include<typeinfo.h>    // 没有+c的c++版本

//
#include<iostream>
#include<typeinfo.h>
using namespace std;int main()
{int a;if( typeid(a)==typeid(int) )    cout<<"1"<<endl;    else                            cout<<"0"<<endl;return 0;
}
// 可能的输出:
// 1

  相关解决方案