typename var;
typeid(var).name()返回变量var类型
C++的实例代码如下
#include
#include
using namespace std;
int main(void)
{
int a, b;
float c;
if(typeid(a) == typeid(b))
cout << "Var type of a and b is equal." << endl;
if(typeid(a) != typeid(c))
cout << "Var type of a and c is different." << endl;
return 0;
}