C++11 —— 判断 tuple 中是否包含某个数据类型

Posted Gaaagaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++11 —— 判断 tuple 中是否包含某个数据类型相关的知识,希望对你有一定的参考价值。

??如标题所提到的,这个问题也让我烦恼了一会,前两天在某个论坛上(现在找不到出处了)看到有如下代码的解决办法,非常巧妙,在此整理并记录出来做备忘。

#include <type_traits>
#include <tuple>
#include <iostream>

/**
 * @struct X_check
 * @brief  协助 X_tuple_has_type() 进行类型检查。
 */
template< bool... >
struct X_type_check
{

};

/**
 * @brief 判断 tuple 对象内是否包含某个数据类型。
 * 
 * @param[in ] _Fy    : 待判断的数据类型。
 * @param[in ] _Ty... : tuple 的参数列表。
 * 
 */
template< typename _Fy, typename... _Ty >
constexpr bool X_tuple_has_type(const std::tuple< _Ty... > &)
{
    return !std::is_same< X_type_check< false, std::is_same< _Fy, _Ty >::value... >,
                          X_type_check< std::is_same< _Fy, _Ty >::value..., false > >::value;
}

int main(int argc, char * argv[])
{
    std::cout << std::boolalpha;
    std::cout << X_tuple_has_type< int    >(std::tuple< int, char, double >{ 100, 'a', 3.1415926 }) << std::endl;
    std::cout << X_tuple_has_type< char   >(std::tuple< int, char, double >{ 100, 'a', 3.1415926 }) << std::endl;
    std::cout << X_tuple_has_type< double >(std::tuple< int, char, double >{ 100, 'a', 3.1415926 }) << std::endl;
    std::cout << X_tuple_has_type< float  >(std::tuple< int, char, double >{ 100, 'a', 3.1415926 }) << std::endl;
    std::cout << X_tuple_has_type< void   >(std::tuple< int, char, double >{ 100, 'a', 3.1415926 }) << std::endl;

    return 0;
}

以上是关于C++11 —— 判断 tuple 中是否包含某个数据类型的主要内容,如果未能解决你的问题,请参考以下文章

node js 判断数组中是否包含某个值

C/C++判断字符串是否包含某个字符串

JQuery如何判断值中是不是包含某个值?

js判断字符串与字符串相互包含,以及数组是否包含某个元素;

C语言判断一句中文里是不是包含的有某个汉字或多个汉字

python中判断字典中是否存在某个键