嵌套模板

时间:2011-04-01 09:26:12

标签: c++ templates

我对C ++模板有一个奇怪的问题,我不明白为什么以下代码无效:

#include <iostream>

template <typename A, typename B>
class TypePair {
public:
    typedef A First;
    typedef B Second;
};


template <typename P>
class Foo {
    public:
        Foo(P::First f, P::Second) {
            std::cout
                << "first = " << f << std::endl
                << "second = " << s << std::endl;
        }
};


int main(int argc, char **argv) {
    Foo<TypePair<int, double> > foo(42, 23.0);

    return 0;
}

代码会产生以下错误:

$ g++ templates.cpp -o templates
templates.cpp:14: error: expected ‘)’ before ‘f’
templates.cpp: In function ‘int main(int, char**)’:
templates.cpp:23: error: no matching function for call to ‘Foo<TypePair<int, double> >::Foo(int, double)’
templates.cpp:12: note: candidates are: Foo<TypePair<int, double> >::Foo()
templates.cpp:12: note:                 Foo<TypePair<int, double> >::Foo(const Foo<TypePair<int, double> >&)

对我来说代码看起来完全没问题,但是g ++显然有自己的意见^^有什么想法吗?

塞巴斯蒂安

1 个答案:

答案 0 :(得分:15)

使用

Foo(typename P::First f, typename P::Second s)

由于P是模板参数,P :: First和P :: Second是从属名称,因此您必须明确指定它们是类型名称,而不是静态数据成员。 See this了解详情