c++输出一个变量的类型
时间: 2023-11-09 21:04:22 浏览: 92
你可以使用 typeid 操作符来输出一个变量的类型,例如:
```cpp
#include <iostream>
#include <typeinfo>
int main() {
int x = 5;
std::cout << typeid(x).name() << std::endl; // 输出 "int"
return 0;
}
```
注意:输出结果可能与你期望的不一致,这是因为 C++ 的类型名在不同的编译器、操作系统和编译选项下可能会有所不同。
阅读全文