0

显然,当我的代码到达此if语句时,string subscript out of range会发生异常。

// a is int
// str is std::string

while ( true )
{    
// other stuff
if( a == str.size() ) // this line throws an exception
    break;
}

在什么情况下,这么简单的 if 语句会抛出异常?我只是没看到。0如果由于某种原因比较失败,它不应该简单地返回吗?

编辑:这是它发生的全部功能。它基本上是读取一个文件并获取它的一些标记的值。如果它具有一定的相关性,我正在使用Visual Studio 2010 Express并且错误显示“调试断言失败”。

void Function(string &str, int start)
{
    int outline;

    // Read all attributes
    int pos, pos2 = start;
    while( true )
    {       
        pos = SkipWhiteSpace(str, pos2);
        pos2 = FindEndOfToken(str, pos);

        string token = str.substr(pos, pos2-pos);

        pos = SkipWhiteSpace(str, pos2);
        if( pos == str.size() || str[pos] != '=' ) break;

        pos = SkipWhiteSpace(str, pos+1);
        pos2 = FindEndOfToken(str, pos);
        file<<"...part 3";

        string value = str.substr(pos, pos2-pos);

        if( token == "outline" )
            outline = (short)strtol(value.c_str(), 0, 10);

        if( pos == str.size() ) // <--- error here (at least, it seems so)
            break;      
    }

    SetOutline(outline);
}

SkipWhiteSpace()功能FindEndOfToken()就是这两个。

int SkipWhiteSpace(string &str, int start)
{
    UINT n = start;
    while( n < str.size() )
    {
        char ch = str[n];
        if( ch != ' ' && 
            ch != '\t' && 
            ch != '\r' && 
            ch != '\n' )
            break;

        ++n;
    }

    return n;
}

int FindEndOfToken(string &str, int start)
{
    UINT n = start;
    if( str[n] == '"' )
    {
        n++;
        while( n < str.size() )
        {
            char ch = str[n];
            if( ch == '"' )
            {
                // Include the last quote char in the token
                ++n;
                break;
            }
            ++n;
        }
    }
    else
    {
        while( n < str.size() )
        {
            char ch = str[n];
            if( ch == ' ' ||
                ch == '\t' ||
                ch == '\r' ||
                ch == '\n' ||
                ch == '=' )
                break;

            ++n;
        }
    }

    return n;
}
4

1 回答 1

0

这一行永远不会抛出异常。你确定你得到的是一个真正的 C++ 异常而不是崩溃吗?

于 2013-08-23T16:41:09.223 回答