根据其他模板参数指定返回类型

Specify return type based on other template argument

本文关键字:返回类型 参数 其他      更新时间:2023-10-16

我想通过另一个模板参数指定我的模板化函数的返回类型。所有这些都在课堂上。

在头文件中:

class MyClass {
    template<int type, typename RT>
    RT myfunc();
};

在.cpp像这样的东西:

template<>
int MyClass::myfunc<1, int>() { return 2; }
template<>
double MyClass::myfunc<2, double>() { return 3.14; }
template<>
const char* MyClass::myfunc<3, const char*>() { return "some string"; }

我希望能够像这样使用我的函数:

MyClass m;
int i = m.myfunc<1>(); // i will be 2
double pi = m.myfunc<2>(); // pi will be 3.14
const char* str = m.myfunc<3>(); // str == "some string"

所以我希望我的函数能够通过一个模板整数(或任何枚举)进行参数化,并且基于这个整数,返回类型会有所不同。我不希望该函数与指定参数以外的任何其他整数参数一起使用,例如m.myfunc<4>()会给出编译错误。

我只想通过一个模板参数参数化我的函数,因为m.myfunc<1, int>()可以工作,但我不想一直写类型名。

我尝试使用自动返回类型,或以其他方式模板化,但总是遇到一些编译错误。(未找到函数,未解析的外部...

这有可能吗?

这是你想要的吗?

template<int n>
struct Typer
{
};
template<>
struct Typer<1>
{
    typedef int Type;
};
template<>
struct Typer<2>
{
    typedef double Type;
};
template<>
struct Typer<3>
{
    typedef const char* Type;
};
class MyClass
{
public:
    template<int typeCode>
    typename Typer<typeCode>::Type myfunc();
};
template<> Typer<1>::Type MyClass::myfunc<1>(){ return 2; } 
template<> Typer<2>::Type MyClass::myfunc<2>() { return 3.14; }
template<> Typer<3>::Type MyClass::myfunc<3>() { return "some string"; }