【发布时间】:2016-08-11 01:44:24
【问题描述】:
我试图找出这段代码有什么问题。基本上type2 继承自type1<T>, type1<T2>,我想从基类之一初始化value 成员。
#include <utility>
template <typename T>
struct type1 {
using base_type = T;
template <typename... Args> type1(Args&&... args) : value(std::forward<Args>(args)...) {}
T value;
};
template <typename... Ts>
struct type2 : public Ts... {
template <typename T>
type2(T&& arg) : T::value(std::move(arg.value)) {}
};
int main()
{
type2<type1<int>, type1<double>> x(type1<int>(10));
return 0;
}
但我从 clang 收到以下错误:
Error(s):
source_file.cpp:15:25: error: typename specifier refers to non-type member 'value' in 'type1<int>'
type2(T&& arg) : T::value(std::move(arg.value)) {}
^~~~~
source_file.cpp:20:38: note: in instantiation of function template specialization 'type2<type1<int>, type1<double> >::type2<type1<int> >' requested here
type2<type1<int>, type1<double>> x(type1<int>(10));
^
source_file.cpp:9:7: note: referenced member 'value' is declared here
T value;
^
1 error generated.
为什么clang说typename specifier refers to non-type member 'value' in 'type1<int>'? Gcc 想要将(可能也是 clang)value 视为一种类型:
Error(s):
source_file.cpp: In instantiation of ‘type2<Ts>::type2(T&&) [with T = type1<int>; Ts = {type1<int>, type1<double>}]’:
source_file.cpp:20:54: required from here
source_file.cpp:15:51: error: no type named ‘value’ in ‘struct type1<int>’
type2(T&& arg) : T::value(std::move(arg.value)) {}
^
【问题讨论】:
标签: c++ compiler-errors c++14 variadic-templates template-meta-programming