Qt C++判断数据类型

头文件.h引入:

 #include 
 int i = 1;
 QString j = typeid(i).name();
  qDebug() << j;

输出 “int”

你可能感兴趣的:(c++,c++,qt)