抛出'std :: out_of_range'的实例后调用terminate():basic_string :: erase

时间:2012-10-01 17:34:03

标签: c++ erase outofrangeexception stdstring

string Farfallino::decode(string buff) {

string stringa;
size_t pos;

while(1) {
    while(pos = (buff.find("afa"))) {
        buff.erase(pos, 3);
        buff.insert(pos, "a");
    }
    while(pos = (buff.find("efe"))) {
        buff.erase(pos, 3);
        buff.insert(pos, "e");
    }
    while(pos = (buff.find("ifi"))) {
        buff.erase(pos, 3);
        buff.insert(pos, "i");
    }
    while(pos = (buff.find("ofo"))) {
        buff.erase(pos, 3);
        buff.insert(pos, "o");
    }
    while(pos = (buff.find("ufu"))) {
        buff.erase(pos, 3);
        buff.insert(pos, "u");
    }
}

return stringa;
}

我正在尝试删除传递给函数的字符串中的每个“afa”“efe”“ifi”“ofo”和“ufu”,但它给了我这个错误。 我不知道我做错了什么..

1 个答案:

答案 0 :(得分:5)

它应该是这样的:

while ((pos = buff.find("x")) != std::string::npos)
{
    // ...
}

“未找到”通过返回npos来发出信号,而不是零。零只是第一个角色。