gpt4 book ai didi

c++ - 如何检查条件语句中变量的类型

转载 作者:行者123 更新时间:2023-11-30 02:31:40 25 4
gpt4 key购买 nike

如何在 C++ 中的 if 子句中检查输入变量的类型?如果有任何成员函数可以执行此操作。

最佳答案

这取决于您要执行的类型检查。

最简单的可能是

 #include <typeinfo>     // for the `std::type_info` type

if (typeid(input_variable) == typeid(chosen_type))
{
// input_variable is of type chosen_type
}

也可以检查标识类型的(实现定义的)名称字符串

 if (std::string(typeid(input_variable).name()) == typeid(chosen_type).name())
{
// input_variable is of type chosen_type
}

比较运算符需要转换为 std::string 才能工作,因为 .name() 成员函数返回 const char * 。否则比较使用 name()strcmp() 成员(在 C 的 <string.h> 或 C++ <cstring> - 在命名空间 std 内)。

请记住,typeid(X).name 返回的字符序列是实现定义的。

在C++11中,type_info类型有一个hash_code()成员,也可以进行比较。这个值是实现定义的,并且在程序的执行之间可能会有所不同。此外,正如 Martin Bonner 在评论中提到的那样,hash_code() 可能会给出相等性的误报(如果 hash_code() 比较不相等,则类型不同,但如果它们比较相等,则类型可能不同。我提到这不是因为我提倡比较 hash_code() s,而是因为原始问题没有解释为什么需要类型比较,所以没有依据假设可能产生错误匹配的测试是不合适的。

关于c++ - 如何检查条件语句中变量的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37409596/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com