【发布时间】:2017-06-26 17:18:42
【问题描述】:
不知何故,我无法创建D 的实例。我不知道为什么。模板模板参数(Allocator_class)似乎是问题所在。
#include <vector>
template <template<typename T> class Allocator_class>
class T_b {
public:
template<typename T> using A = Allocator_class<T>;
};
template< template <typename T> class A>
class C {
public:
C() { }
};
template<typename Ttb>
class D {
public:
template<typename T> using A = typename Ttb::template A<T>;
typedef C<A> Data;
D(C<A> &data) : _data(data) {}
private:
Data &_data;
};
int main() {
typedef T_b<std::allocator> Ttb;
C<std::allocator> b;
D<Ttb>c(b);
}
来自 Clang 的错误:
test5.cpp:29:8: error: no matching constructor for initialization of 'D<Ttb>'
(aka 'D<T_b<std::allocator> >')
D<Ttb>c(b);
^ ~
test5.cpp:16:7: note: candidate constructor (the implicit copy constructor) not viable: no known
conversion from 'C<std::allocator>' to 'const D<T_b<std::allocator> >' for 1st argument
class D {
^
test5.cpp:16:7: note: candidate constructor (the implicit move constructor) not viable: no known
conversion from 'C<std::allocator>' to 'D<T_b<std::allocator> >' for 1st argument
class D {
^
test5.cpp:21:5: note: candidate constructor not viable: no known conversion from 'C<std::allocator>'
to 'C<A> &' for 1st argument
D(C<A> &data) : _data(data) {}
^
【问题讨论】:
-
发生这种情况有什么原因吗?
-
最后一个错误说
C<A> &,所以我猜A没有推导出来。 -
我认为
A很好;请参阅here,在那里我得到了一些代码来编译和运行A。我的示例和您的示例之间的区别在于C是在具体类(而不是另一个模板类)上模板化的。也许这就是问题所在?模板层太多导致编译器放弃?
标签: c++ c++11 templates constructor template-templates