8

我有以下嵌套模板

class A {
    template <typename T> class B {
        template <typename U> void foo(U arg);
    };
};

我正在尝试像这样定义嵌套模板:

template <typename T, typename U> void
A::B<T>::foo(U arg) {...}

但我得到declaration is incompatible with function template错误。这样做的法律语法是什么?

4

1 回答 1

14

您需要分隔模板声明:

template <typename T>
template <typename U>
void
A::B<T>::foo(U arg) { … }
于 2013-05-09T20:05:17.620 回答