C++ bitset size() 函数

C++ bitset size() 函数

C++ bitset size() 函数用于检查 bitset 的大小。它返回 bitset 中的位数。

语法

int size();

参数

它不接受任何参数。

返回值

它返回位集中的位数。

示例1

#include <iostream>
#include <bitset>
using namespace std;
int main()
{
    bitset<8> b;
    bitset<6> b1;
   cout << "size of bitset b : " << b.size() <<'\n'; 
     cout << "size of bitset b1 : " << b1.size() <<'\n'; 
   return 0;
}

输出:

size of bitset b : 8
size of bitset b1 : 6

示例2

#include <iostream>
#include <bitset>
using namespace std;
int main()
{
    bitset<8> b(string("01010110"));
    bitset<4> b1(string("0110"));
      int a = b.size();
      int c = b1.size();
   cout << "size of bitset b : " << a <<'\n'; 
     cout << "size of bitset b1 : " << c <<'\n'; 
   return 0;
}

输出结果:

size of bitset b : 8
size of bitset b1 : 4

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程