gpt4 book ai didi

C++17:integer_sequence 用法与编译错误

转载 作者:行者123 更新时间:2023-11-28 00:01:50 24 4
gpt4 key购买 nike

我想用一个integer_sequence来判断一个范围内的数字是否都在某个值以下:is_range()会返回true,否则返回false,如下所示:

#include<utility> 
#include<iostream>
using namespace std;
template <std::size_t N, std::size_t... Ix>
bool in_range(std::index_sequence<Ix...>) {
return ((Ix < N) && ...);
}
int main()
{
cout<<in_range<10>({1,2,30})<<endl;
cout<<in_range<10>(1,2,3)<<endl;
return 0;
}

我是用clang3.8编译的,编译失败。

$ clang++ m.cpp -std=c++1z 
m.cpp:5:37: error: template argument for template type parameter must be a type
bool in_range(std::integer_sequence<Ix...>) {
^~~~~
/usr/bin/../lib/gcc/x86_64-linux-gnu/5.3.1/../../../../include/c++/5.3.1/utility:229:21: note:
template parameter is declared here
template<typename _Tp, _Tp... _Idx>
^
m.cpp:10:11: error: no matching function for call to 'in_range'
cout<<in_range<10>({1,2,30})<<endl;
^~~~~~~~~~~~
m.cpp:11:11: error: no matching function for call to 'in_range'
cout<<in_range<10>(1,2,3)<<endl;
^~~~~~~~~~~~
3 errors generated.

我应该如何更正我的代码?我想我对折叠表达式的理解不正确

如何纠正?

最佳答案

不需要 index_sequence在这里,您可以只传递要比较的数字列表作为模板参数。

template <std::size_t N, std::size_t... Ix> 
bool in_range() {
return ((Ix < N) && ...);
}
cout<<in_range<10,1,2,30>()<<endl;

或者如果你想将它们作为参数传递给函数模板

template <std::size_t N, typename... Ix> 
bool in_range(Ix... ix) {
return ((ix < N) && ...);
}
cout<<in_range<10>(1U,2U,30U)<<endl;

最后,如果您希望能够将 braced-init-list 传递给 in_range你应该接受 initializer_list<size_t> .否则,模板参数推导将失败,因为 braced-init-list 不是表达式,因此它没有类型。

template <std::size_t N> 
constexpr bool in_range(std::initializer_list<std::size_t> ix) {
for(auto i : ix) {
if(i >= N) return false;
}
return true;
}
cout<<in_range<10>({1,2,30})<<endl;

Live demo

关于C++17:integer_sequence 用法与编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38342428/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com