免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12345678
最近访问板块 发新帖
楼主: windyrobin
打印 上一主题 下一主题

C++ 这孩子 是不是误入歧途了? [复制链接]

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
71 [报告]
发表于 2011-12-05 16:25 |只看该作者
回复 69# rong_bo

也是。
修改过的能编译的代码在下面:

  1. template<bool,typename THEN, typename ELSE>
  2. struct IF { typedef THEN type; };
  3. template<typename THEN, typename ELSE>
  4. struct IF<false,THEN,ELSE> { typedef ELSE type; };

  5. template<typename T, T X>
  6. struct CONST
  7. {
  8.       static const T value = X;
  9. };

  10. template<typename T, T X>
  11. struct bits_of
  12. {
  13.       typedef typename IF<X, bits_of<T,(X>>1)>, CONST<T,0> >::type type;
  14.       static const T value = type::value + !!X;
  15. };
复制代码
验证

  1. typedef int a0[bits_of<int,0>::value==0? 1: -1];
  2. typedef int a1[bits_of<int,1>::value==1? 1: -1];
  3. typedef int a2[bits_of<int,2>::value==2? 1: -1];
  4. typedef int a3[bits_of<int,3>::value==2? 1: -1];
  5. typedef int a4[bits_of<int,4>::value==3? 1: -1];
  6. typedef int a7[bits_of<int,7>::value==3? 1: -1];
  7. typedef int a8[bits_of<int,8>::value==4? 1: -1];
  8. typedef int a15[bits_of<int,15>::value==4? 1: -1];
  9. typedef int a16[bits_of<int,16>::value==5? 1: -1];
复制代码
计算unsigned int有多少value bits, 在编译错误的提示信息里就可以看到计算结果

  1. template<int>
  2. struct message;
  3. message<bits_of<unsigned,~unsigned(0)>::value> m;
复制代码
我在i386下得到的结果是32。



原始代码出现的那帖是为了说明:
1. C++98/03允许让程序员做许多以前不能做的事
2. 但做事的方法也许会很晦涩 —— 如上
3. C++11 增加一些优雅的方法

并不是在研究bit_of的实现细节 —— 这东西在 std::numeric_limits<T>::digits 里就有 —— 因为bits_of 容易计算, 也很有用, 适合作为示例。
于是随手写了一段代码……  没有验证是我的错……

template<typename T, T remain> 确实是 non-type template parameters。
问题出在:

1. 作为递归终结条件的偏特化
template<typename T>
struct bits_of<T, 0> // 这里, 为什么是错误就得请教幻の上帝等人了

于是改为使用 IF 作为终结条件。

2. ~int(0)
负数右移是实现定义的, bits_of<int,INT_MAX> 可以, 但 bits_of<int,~int(0) > 就不行了……
bits_of<int,INT_MAX> 丢失了范型,  std::numeric_limits<T>::max() 是运行时值而非编译时值。
可以用 bits_of<int,boost::integer_traits<int>::const_max>::value 。

论坛徽章:
0
72 [报告]
发表于 2011-12-06 11:27 |只看该作者
回复 71# OwnWaterloo

很好很强大,普通C++程序员 VS 文艺C++程序员。

编译错误是这个:

“a partial specialization cannot have a dependent non-type template parameter”。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP