gpt4 book ai didi

c++ - int和char之间的数据转换

转载 作者:行者123 更新时间:2023-11-27 23:32:58 24 4
gpt4 key购买 nike

我正在学习 C++ 测试,我无法解决这个问题:

我在一个 int* 中有数据,我想把它打印成一个 char*

我想我可以通过以下方式做到这一点:

// pOutputString is of type char*
// pIntegers is of type int*

int pos = 0;
for (int i = 0; i< SIZE; i++)
{
pOutputString[pos] = char(pIntegers[i]);
pos++;
}

如果我用 iostream 遍历 pOutputString,我应该得到tring 表示(因此 11 将变成“11”)。

作为这项作业的一部分,我不允许使用任何第三方库。如果我想要什么,我必须自己做。

谢谢。

编辑:您可以在 IDEone 中看到完整代码:http://ideone.com/nKXpg

最佳答案

嗯,标准库不是第三方的,所以使用它。

#include <sstream>
#include <cstring>
using namespace std;

ostringstream s;
for (int i = 0; i< SIZE; i++) {
s << ( i? ", " : "" ) << pIntegers[i];
}
strcpy( pOutputString, s.str().c_str() );

有一个标题 <strstream>和类 ostrsream可以在没有 strcpy 的情况下做到这一点,但它已被弃用,因为它太容易溢出。

(我在这里假设输入和输出数据格式,但 iostreams 可能有一种方法可以按照您的需要进行格式化。)

关于c++ - int和char之间的数据转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3579178/

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