gpt4 book ai didi

c++ - 错误 : cannot convert 'std::basic_string' to 'char' in assignment

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:16:04 31 4
gpt4 key购买 nike

当我编译这段代码时,我总是得到这个错误。这里 dna 设置为 char。我希望将 bitset 中的位值转换为 char,将 char 转换为 int。如果这不是正确的方法,请指导。

for (std::size_t i = 0; i < myString.size(); ++i)  
{
std::bitset<8> y(myString[i]);

dna = y.to_string<char>();
binary = dna;
cout << binary << " ";
while ( binary >= 10) {
for(int i = 0; i <= 100; ++i) { // loops length of array
a[i] = binary % 10;
binary = binary / 10;
}
}
}

最佳答案

y.to_string(); 返回 std::string。它无法转换为 char

使用这个:

std::string dna = y.to_string();
unsigned long binary = y.to_ulong();

人们,请不要给我的帖子投票。我需要它来获得“顽强”徽章。

关于c++ - 错误 : cannot convert 'std::basic_string<char>' to 'char' in assignment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33415325/

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