C++,如何获取变量类型 并输出

首先引入头文件: <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++编译器的运行结果,输出的是变量类型的全拼。


 如果对你有帮助的话,可以点一下右下角的 “推荐” 哟 ~~~

posted @ 2020-05-10 20:34  zeroPatrick  阅读(22327)  评论(0编辑  收藏  举报