我有包含1或0的数组。我想将它追加并成为一个行字符串。目前我没有这样做。这是我的代码。请帮助,因为我无法完成它。每次我将最终结果加载到控制台时,只有笑脸而不是1或0.请帮助
int pixelValueArray[256];
String testing;
for(int d=0;d<256;d++)
{
testing.append(1,pixelValueArray[d]);
}
cout<<testing;
答案 0 :(得分:2)
Std提供函数std :: to_string()(自c ++ 11开始)将数据类型转换为std :: string:http://en.cppreference.com/w/cpp/string/basic_string/to_string。 也许这可以帮到你。
答案 1 :(得分:1)
整数位的ASCII值由'0' + digit
给出。
for(int i = 0; i < 256; i++)
testing.append(1, '0' + pixelValueArray[i]);
或者您可以使用更简单的+=
for(int i = 0; i < 256; i++)
testing += '0' + pixelValueArray[i];