gpt4 book ai didi

C++ 模板特化,类作为返回类型,枚举作为参数

转载 作者:行者123 更新时间:2023-11-28 02:09:31 26 4
gpt4 key购买 nike

我没有太多使用模板的经验,但我正在尝试基于枚举和返回不同类的函数来进行模板特化。下面是示例代码(或者更确切地说,我正在尝试完成的代码):

class Foo {
// member variables
};
class Cat {
// member variables
};

enum MyType{ A, B, C};

// Header file
template<class T, MyType U> std_shared_ptr<T> process();

// cpp file / implementation
template<> std_shared_ptr<Foo> process<Foo, A>()
{
}

template<> std_shared_ptr<Cat> process<Cat, C>();
{
}

有人可以帮我弄清楚我在这里遗漏了什么或做错了什么吗?我尝试搜索它并找到了一些处理枚举类型 ( Template specialization for enum ) 的解决方案,但是,无法弄清楚如何将它与函数中的模板返回类型放在一起。

编辑:我在这里尝试做的是根据枚举类型作为函数的参数进行模板特化。同样的函数也返回一个模板类。所以这个函数在这里有两个模板:T(返回参数)和 U(输入参数,它是一个枚举)。有可能吗?

编辑:为正确的行为修改了上述示例。

最佳答案

您不能部分特化模板函数。

函数参数的值,而不是类型,不能改变返回值的类型。非类型模板参数的值可以更改返回值的类型,但它是在 <> 中传递的并且必须在编译时确定,而不是在 ()

标签可能会有所帮助。

template<MyType X>
using my_type_tag_t=std::integral_constant<MyType, X>;
template<MyType X>
constexpr my_type_tag_t<X> my_type_tag = {};

template<class T>struct tag_t{using type=T;};
template<class Tag>using type=typename Tag::type;

template<MyType>
struct my_type_map;
template<>
struct my_type_map<MyType::A>:tag<Foo>{};
template<>
struct my_type_map<MyType::B>:tag<Cat>{};

然后:

template<MyType X>
std::shared_ptr<type<my_type_map<X>>>
process( my_type_tag_t<X> );

你在哪里打电话 process( my_type_tag<A> )得到 shared_ptr<Foo>

实现看起来像:

template<>
std::shared_ptr<Foo>
process( my_type_tag_t<MyType::A> ) {
// blah
}

仍然不够优雅,可能无法解决您的问题,但它接近您描述的解决方案。

关于C++ 模板特化,类作为返回类型,枚举作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36250994/

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