如何判断两个变量的类型是否相等

2025-04-02 15:09:03
推荐回答(1个)
回答1:

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;
}