我在尝试将整数转换为字符串的简单函数时遇到了一些麻烦。这是代码:
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();
}
该函数工作正常,但是当进行多次调用时,它会在某些时候给我一个分段错误。
答案 0 :(得分:1)
它适用于我: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;
}
在程序遇到未定义行为的情况后,分段错误经常发生一段时间,因此检测到错误时的堆栈跟踪不一定与错误代码具有相同的功能。