C:\Program Files\CodeBlocks\tanxin\main.cpp|39|error: no matching function for call to 'to_string(std::bitset<8>&)'|
时间: 2023-12-12 17:42:57 浏览: 158
CodeBlocks_C语言_gcc-nm.exe_
非常抱歉,我在之前的回答中犯了一个错误。`std::to_string` 函数无法直接用于 `std::bitset` 对象。为了将 `std::bitset` 转换为字符串,您可以使用 `std::bitset::to_string` 函数来获取其二进制表示形式。以下是修改后的代码:
```cpp
#include <iostream>
#include <bitset>
bool result(std::string s) {
// 省略部分代码
}
int main() {
std::string s;
while (std::cin >> s) {
if (!result(s)) {
std::cout << "invalid IP" << std::endl;
} else {
std::stringstream ss(s);
std::string str;
std::vector<int> line;
while (getline(ss, str, '#')) {
line.push_back(stoi(str));
}
std::string snum;
for (int i = 0; i < line.size(); i++) {
std::bitset<8> binary(line[i]);
snum += binary.to_string();
}
std::cout << snum << std::endl;
long sum = 0;
int k = 1;
for (int i = snum.size() - 1; i >= 0; i--) {
int ans = snum[i] - '0';
sum = sum + ans * k;
k *= 2;
}
std::cout << sum << std::endl;
}
}
return 0;
}
```
现在,代码应该能够正确输出 `sum` 和 `snum`,同时处理二进制转换和计算。请注意,我们使用 `std::bitset` 的 `to_string` 函数来获取二进制字符串,并将其添加到 `snum` 中。
阅读全文