标签:pre turn mic 定义 col idt ima eid http
首先引入头文件: <typeinfo>
获取变量类型的语句是:typeid(variable).name(),其中 “variable”是你定义的变量名称。
#include <iostream> #include <typeinfo> using namespace std; int main(){ int v1 = 1; char v2 = ‘a‘; double v3 = 1; float v4 = 1.1; bool v5 = false; cout << typeid(v1).name() << endl; cout << typeid(v2).name() << endl; cout << typeid(v3).name() << endl; cout << typeid(v4).name() << endl; cout << typeid(v5).name() << endl; return 0; }
第一个图是gcc编译器的运行结果,输出的是变量类型的首字母。
第二个图是VC++编译器的运行结果,输出的是变量类型的全拼。
如果对你有帮助的话,可以点一下右下角的 “推荐” 哟 ~~~
标签:pre turn mic 定义 col idt ima eid http
原文地址:https://www.cnblogs.com/0patrick/p/12864894.html