gpt4 book ai didi

c++ - bitset 没有成员 ullong

转载 作者:行者123 更新时间:2023-11-28 06:55:03 25 4
gpt4 key购买 nike

我尝试执行以下代码,但出现错误。这是为什么?

#include <iostream>
#include <bitset>

int main()
{
const std::string s = "0010111100011100011";
unsigned long long value = std::bitset<64>(s).to_ullong();
std::cout << value << std::endl;
}

我收到以下错误。

prog.cpp: In function ‘int main()’:
prog.cpp:7: error: ‘class std::bitset<64u>’ has no member named ‘to_ullong’ stdout

最佳答案

std::bitset::to_ullong 从 C++11 开始可用。

http://ideone.com/RpMR2A

http://en.cppreference.com/w/cpp/utility/bitset

关于c++ - bitset 没有成员 ullong,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23294500/

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