码迷,mamicode.com
首页 > 编程语言 > 详细

C++ bitset的实现

时间:2014-10-22 20:23:13      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:blog   http   strong   2014   on   log   代码   html   bs   

C++中bitset很方便的实现了位操作,有几点需要注意,可以参考源代码:

https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.2/bitset-source.html


它的模板是

00645   template<size_t _Nb>
00646     class bitset
00647     : private _Base_bitset<_GLIBCXX_BITSET_WORDS(_Nb)>

size_t 是在编译时候就已经得到了,然后将_Nb除上每个大小得到_Nw,_Nw即为模板泛化得到的首地址:

00077   template<size_t _Nw>
00078     struct _Base_bitset
00079     {
00080       typedef unsigned long _WordT;
00081 
00082       /// 0 is the least significant word.
00083       _WordT        _M_w[_Nw];

因此,bitset不需要像vector一样存一个首地址。。。

C++ bitset的实现

标签:blog   http   strong   2014   on   log   代码   html   bs   

原文地址:http://blog.csdn.net/taoqick/article/details/40381087

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!