以二进制表示形式将Binary std :: string转换为int

时间:2017-10-13 17:12:54

标签: c++

我无法将16位std :: string转换为可以保存字符串的确切二进制数的int。我一直在乱搞atoi和bitset,但他们转换为deciamls或取消领先的零有没有办法做到这一点

std::string str = "0011101100010101";
int num = 0;
.
.
.
num = 0011101100010101  // now equals 

1 个答案:

答案 0 :(得分:1)

使用std :: bitset

python

如果您不需要字符串

,请使用文字
std::string str = "0011101100010101";
auto number = static_cast<uint16_t>(std::bitset<16>{ str }.to_ulong( ));