gpt4 book ai didi

c++ - 比较 C++ 中的 int 和 bitset

转载 作者:太空宇宙 更新时间:2023-11-04 15:05:48 26 4
gpt4 key购买 nike

如何将 bitset 与整数进行比较?或者更一般地使用整数运算符:像这样:

#include <iostream> 
#include <iomanip>
#include <bitset>
using namespace std;

int main()
{
bitset<4> _b1 = 3 ;


if(_b1>=2 )
cout<<_b1;



system("pause");
return 0;

最佳答案

使用 std::bitset<N>::to_ulong() :

if(_b1.to_ulong() >= 2)

关于c++ - 比较 C++ 中的 int 和 bitset,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15348691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com