gpt4 book ai didi

c++ - 如何检查忽略其模板参数的类型

转载 作者:行者123 更新时间:2023-11-27 23:05:24 25 4
gpt4 key购买 nike

如何在忽略其模板参数的情况下确定类类型。

所以对于完全指定的类型,如 MyClass<param1, param2, ...> , 我想检查它是否确实是 MyClass 类型?

本着

的精神
typedef ClassName<param1, param2, ...> T;

//Now my program receives T which can be any arbitrary type
//and I want to have something like the following
//check_if_MyClassType<T>::value should be true
//check_if_MyClassType<int>::value should be false
//check_if_MyClassType<T>::value should be false if T is not a MyClass type e.g T = vector<int>

最佳答案

template <class T>
struct IsClassName { static const bool value = false; };

template <class param1, param2, ...>
struct IsClassName<ClassName<param1, param2, ...> > { static const bool value = true; };

关于c++ - 如何检查忽略其模板参数的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23880452/

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