0

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

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();
}

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

4

1 回答 1

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;
}

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

于 2013-02-19T15:59:58.390 回答