C++判断变量/对象/枚举类型的简单方式
Posted C和C加加
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++判断变量/对象/枚举类型的简单方式相关的知识,希望对你有一定的参考价值。
来源:blog.csdn.net/gkzscs/article/details/109093965
1.关键点
<typeinfo>
使用typeid()
操作符所需包含的头文件。
typeid()
获取变量类型信息的操作符,其返回值类型为std::typeinfo。我们可使用typeid(n) == typeid(int)的方式来判断变量n是否为类型int。
注:可以使用typeid().name()获取变量类型名,但通常都不是我们所熟知的类型名称,而且比较奇怪的字符串,比如int类型,得到的name()为i。
2.示例
using namespace std;
struct Hero
{
int age;
string name;
};
enum Color
{
Red,
Blue
};
int main()
{
int n = 666;
char c = 'c';
string str = "Hello World";
Hero hero;
Color color;
if (typeid(n) == typeid(int)) cout << "n is an integer\n";
if (typeid(c) == typeid(char)) cout << "c is a character\n";
if (typeid(str) == typeid(string)) cout << "str is a string\n";
if (typeid(hero) == typeid(Hero)) cout << "hero is a Hero\n";
if (typeid(color) == typeid(Color)) cout << "color is a Color\n";
}
3.编译代码后运行,所得结果为:
n is an integer
c is a character
str is a string
hero is a Hero
color is a Color
简单分享快乐学习,如有错误请多包涵!
PS:如果没有你的关注,那我所做的将毫无意义!欢迎分享,点赞,在看。
以上是关于C++判断变量/对象/枚举类型的简单方式的主要内容,如果未能解决你的问题,请参考以下文章