gpt4 book ai didi

C++字符串流转换错误: segmentation fault

转载 作者:行者123 更新时间:2023-11-28 07:45:32 25 4
gpt4 key购买 nike

我在尝试将整数转换为字符串的简单函数时遇到了一些问题。这是代码:

string Problem::indexB(int i, int j, int k){    
stringstream ss;

if(i < 10)
ss << "00";
else if(i<100)
ss << "0";
ss << i;

if(j < 10)
ss << "00";
else if(j<100)
ss << "0";
ss << j;

if(k < 10)
ss << "00";
else if(k<100)
ss << "0";
ss << k;

return ss.str();
}

该函数工作正常,但是当进行多次调用时,它在某些时候会给我一个段错误。

最佳答案

对我来说效果很好:http://ideone.com/lNOfFZ

完整的工作程序:

#include <string>
#include <sstream>
#include <iostream>

using std::string;
using std::stringstream;

class Problem {
public:
static string indexB(int i, int j, int k);
};

string Problem::indexB(int i, int j, int k){

stringstream ss;

if(i < 10)
ss << "00";
else if(i<100)
ss << "0";
ss << i;

if(j < 10)
ss << "00";
else if(j<100)
ss << "0";
ss << j;

if(k < 10)
ss << "00";
else if(k<100)
ss << "0";
ss << k;

return ss.str();
}

int main() {
std::cout << Problem::indexB(1, 2, 3) << "\n";
std::cout << Problem::indexB(400, 50, 6) << "\n";
std::cout << Problem::indexB(987, 65, 432) << std::endl;
}

段错误通常发生在程序遇到具有未定义行为的问题后一段时间,因此检测到错误时的堆栈跟踪不一定与错误代码位于同一函数中。

关于C++字符串流转换错误: segmentation fault,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14961518/

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