免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1061 | 回复: 0
打印 上一主题 下一主题

[C++] integer_sequence用法的一个问题, 编译错误 [复制链接]

论坛徽章:
2
2015年迎新春徽章
日期:2015-03-04 10:16:532015元宵节徽章
日期:2015-03-06 15:53:22
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2016-07-13 11:52 |只看该作者 |倒序浏览
找了一个网上的例子,我想要用一个模板来处理一个int序列,如果这个序列里面的值都小于某个数,返回true,否则返回false,如下:

  1. #include<utility>
  2. #include<iostream>
  3. using namespace std;
  4. template <std::size_t N, std::size_t... Ix>
  5. bool in_range(std::index_sequence<Ix...>) {
  6.   return ((Ix < N) && ...);
  7. }
  8. int main()
  9. {
  10.     cout<<in_range<10>({1,2,30})<<endl;
  11.     cout<<in_range<10>(1,2,3)<<endl;
  12.     return 0;
  13. }
复制代码
----------------------------
我用clang3.8来编译,失败了:

  1. $ clang++ m.cpp -std=c++1z
  2. m.cpp:5:37: error: template argument for template type parameter must be a type
  3. bool in_range(std::integer_sequence<Ix...>) {
  4.                                     ^~~~~
  5. /usr/bin/../lib/gcc/x86_64-linux-gnu/5.3.1/../../../../include/c++/5.3.1/utility:229:21: note:
  6.       template parameter is declared here
  7.   template<typename _Tp, _Tp... _Idx>
  8.                     ^
  9. m.cpp:10:11: error: no matching function for call to 'in_range'
  10.     cout<<in_range<10>({1,2,30})<<endl;
  11.           ^~~~~~~~~~~~
  12. m.cpp:11:11: error: no matching function for call to 'in_range'
  13.     cout<<in_range<10>(1,2,3)<<endl;
  14.           ^~~~~~~~~~~~
  15. 3 errors generated.
复制代码
我的代码究竟应该怎么改才对呢,是我的fold expression用的不对吗?
还请赐教
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP