c++ typeid().name()輸出變數型別

樂行僧丶發表於2018-08-01

標頭檔案#include<typeinfo>
在上標頭檔案中定義了typeid()操作符可以輸出變數的型別。

#include<iostream>
#include<typeinfo>
using namespace std;

int main(){
    bool a;
    char b;
    short c;
    int d;
    long e;
    float f;
    double g;
    long long h;
    cout<<typeid(i).name()<<endl;
    cout<<typeid(a).name()<<endl;
    cout<<typeid(b).name()<<endl;
    cout<<typeid(c).name()<<endl;
    cout<<typeid(d).name()<<endl;
    cout<<typeid(e).name()<<endl;
    cout<<typeid(f).name()<<endl;
    cout<<typeid(g).name()<<endl;
    cout<<typeid(h).name()<<endl;
    return 0;
}

這裡寫圖片描述

相關文章