技术文章
|
操作系统
编程语言
Web服务器/前端
数据库
NOSQL
网络技术
|
IP地址数字互转
|
扩展阅读
当前位置: 编程语言>
c/c++
C++ Bitsets 成员 test():返回指定位的状态
发布时间:2014-1-19
本文导语:
C++ Bitsets 成员 test():返回指定位的状态 test 语法: bool test( size_t pos ); test()函数返回在pos上的位的值。
c++
bitsets
成员
test
():返回指定位的
状态
test
语法
:
bool test( size_t pos );
test()
函数
返回在
pos
上的位的值。
您可能感兴趣的文章:
C++ Bitsets 成员 Constructors:创建新bitsets
C++ Bitsets 成员 Operators:比较和赋值bitsets
C++ Bitsets 成员 count():返回被设置的位的个数
C++ Bitsets 成员 flip():反转bits中的位
C++ Bitsets 成员 any():如果有任何一个位被设置就返回true
C++ Bitsets 成员 set():设置位
C++ Bitsets 成员 size():返回可以容纳的位的个数
C++ Bitsets 成员 none():如果没有位被设置则返回true
C++ Bitsets 成员 reset():清空所有位
C++ Bitsets 成员 to_ulong():返回bitset的整数表示
C++ Bitsets 成员 to_string():返回bitset的字符串表示