我正在使用c ++ 2a功能,该功能允许将structs / std :: array作为模板参数(g++-9.2.0
,clang
中尚不支持)。
该功能称为Class types in non-type template parameters
,并在P0732R2
中提出。
我尝试使用一个类的模板参数(在下面的示例中为结构C
),以便推导第二类的相应类模板参数(在下面的示例中为结构B
)。我在此利用针对该特定目的编写的自定义类模板参数推导指南。
在这个最小的示例中,我要提取的信息是两个int
。
如果我将这些原始类型用作模板参数,则一切正常。但是,当我将信息合并到一个std::pair
或自定义std::struct
中时,推论将失败。
下面的代码可以正常工作。
#include <array>
/// Data structure which contains a constexpr context to be used for type deduction later
template <int aa, int ab> struct C {};
/// Class which has to find out its own type
template <std::size_t count, std::array<int, count> a, std::array<int, count> b> struct B {
template <int... aa, int... bb> explicit B(C<aa, bb> ... c) {}
};
/// Class deduction guide
template <int... aa, int... ab> B(C<aa, ab>... c)
->B<sizeof...(aa) + 1, std::array<int, sizeof...(aa) + 1>{aa...},
std::array<int, sizeof...(aa) + 1>{ab...}>;
int main() { B k{C<1, 2>{}, C<2, 3>{}}; }
下面的代码无法编译。
#include <array>
/// Change: A contains the information from the previous example in a structs.
struct A { int a; int b; };
/// Data structure which contains a constexpr context to be used for type deduction later
template <A a> struct C {};
/// Class which has to find out its own type
template <std::size_t count, std::array<A, count> a> struct B {
template <A... af> explicit B(C<af> ... c) {}
};
/// Class deduction guide
template <A... af> B(C<af>... c)->B<sizeof...(af) + 1, std::array<A, sizeof...(af) + 1>{af...}>;
int main() { B k{C<A{1, 2}>{}, C<A{2, 3}>{}}; }
错误输出:
main.cc: In function ‘int main()’:
main.cc:24:14: error: class template argument deduction failed:
24 | B k {c1, c2};
| ^
main.cc:24:14: error: no matching function for call to ‘B(C<A{1, 2}>&, C<A{1, 2}>&)’
main.cc:17:20: note: candidate: ‘B(C<((const A)af)>...)-> B<(sizeof... (af) + 1), std::array<A, (sizeof... (af) + 1)>{(const A)af ...}> [with A ...af = {}]’
17 | template <A... af> B(C<af>... c)->B<sizeof...(af) + 1, std::array<A, sizeof...(af) + 1>{af...}>;
| ^
main.cc:17:20: note: candidate expects 0 arguments, 2 provided
main.cc:14:31: note: candidate: ‘template<long unsigned int count, std::array<A, count> a, A ...af> B(C<((const A)af)>...)-> B<count, a>’
14 | template <A... af> explicit B(C<af> ... c) {}
| ^
main.cc:14:31: note: template argument deduction/substitution failed:
main.cc:24:14: note: couldn’t deduce template parameter ‘count’
24 | B k {c1, c2};
我现在想知道是什么原因导致了这个问题。是否由于
发生错误?我也不明白该错误信息。似乎该函数需要零参数。 C<af>...
不能在构造函数中扩展的问题吗?
答案 0 :(得分:0)
@AndiG和@walnut用他们对我的原始问题的评论来回答我的问题。
我的问题可能是由我的G++-9
版本中的错误引起的。我目前不使用最新版本的g++-9
,至少在g ++-10中已解决了该错误。在g++-10.0
的版本中,我编译(3684bbb022c
)不再收到错误。