gpt4 book ai didi

c++ - 使用(非类型)枚举参数定义内部类成员函数模板

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:35:05 25 4
gpt4 key购买 nike

我在定义和特化成员函数时遇到困难 update()内部类的 Outer<T1>::Inner以非类型(枚举)参数为模板。

#include <cstdlib>

template<typename T1>
struct Outer
{
struct Inner
{
enum Type{ A , B , C };

template<Type T2>
void update();
};
};

// Definition
template<typename T1>
template<Outer<T1>::Inner::Type T2>
void Outer<T1>::Inner::update()
{
}

// Specialization
template<typename T1>
template<Outer<T1>::Inner::A >
void Outer<T1>::Inner::update()
{
}

int main()
{
return EXIT_SUCCESS;
}

我在 GCC 4.5.3 中收到以下错误消息

prog.cpp:17:28: error: ‘Outer::Inner::Type’ is not a type
prog.cpp:18:6: error: prototype for ‘void Outer<T1>::Inner::update()’ does not match any in class ‘Outer<T1>::Inner’
prog.cpp:11:15: error: candidate is: template<class T1> template<Outer<T1>::Inner::Type T2> void Outer<T1>::Inner::update()
prog.cpp:24:28: error: ‘Outer::Inner::A’ is not a type
prog.cpp:25:6: error: prototype for ‘void Outer<T1>::Inner::update()’ does not match any in class ‘Outer<T1>::Inner’
prog.cpp:11:15: error: candidate is: template<class T1> template<Outer<T1>::Inner::Type T2> void Outer<T1>::Inner::update()

顺便说一句,与 GCC 不同,Visual Studio 2008 无法编译以下内容

template<typename T1>
struct Outer
{
struct Inner
{
enum Type{ A , B , C };

template<Type T2>
struct Deep;
};
};

template<typename T1>
template<typename Outer<T1>::Inner::Type T2>
struct Outer<T1>::Inner::Deep
{
};

最佳答案

首先,您缺少一个 typename之前 Outer<T1>::Inner::Type .你必须拥有它,即使在 template输入列表,因为 Type是依赖类型。

其次,您的特化语法是错误的(类型在括号前的函数名称之后的 <> 中,而不是在 template<> 中),但即使它是正确的,它也不合法。你必须专门化外部模板 Outer在你完全特化之前update ,根据关于显式模板特化的不幸规则。

关于c++ - 使用(非类型)枚举参数定义内部类成员函数模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14776699/

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