0

更新

我认为 stoi(string) 解决了它,但它只工作了一会儿。我在下面添加了 splitString 和解密的代码。

我偶尔会在 atoi() 使用假定的相同值时遇到未处理的异常。

我的代码如下所示:

ifstream myfile ("Save.sav");
string line = "";
if (myfile.is_open())
{
    while ( myfile.good() )
    {
        getline (myfile,line);

    }
    myfile.close();

    line = StaticFunctions::decrypt(line);

}
vector<string> splitString = StaticFunctions::splitString(line, 's');
return atoi(splitString[0].c_str());

所以它所做的是读取一个保存文件,然后解密它,然后用每个's'分割字符串。当我调试时,保存文件总是相同的,第一个值为 3。

这项工作有时,也许每 10 次尝试。因此,每 10 次尝试中的 9 次,我都会在内存位置获得未处理的异常。

监控转换后的值显示它始终返回 3,然后应用程序不会崩溃,直到我开始游戏,这在代码中有点远。

如果我删除 atoi 并返回 3 应用程序工作正常。

我试过 strtod 但没有帮助。

谢谢,

  • 马库斯

拆分字符串代码:

 vector<string> StaticFunctions::splitString(string str, char splitByThis)
 {
vector<string> tempVector;
unsigned int pos = str.find(splitByThis);
unsigned int initialPos = 0;

// Decompose statement
while( pos != std::string::npos ) {
    tempVector.push_back(str.substr( initialPos, pos - initialPos + 1 ) );
    initialPos = pos + 1;

    pos = str.find(splitByThis, initialPos );
}

// Add the last one
tempVector.push_back(str.substr(initialPos, std::min(pos, str.size()) - initialPos + 1));

return tempVector;

}

解密代码(很简单):

string StaticFunctions::decrypt(string decryptThis)
{
for(int x = 0; x < decryptThis.length(); x++)
{
    switch(decryptThis[x])
    {
        case  '*':
        {
            decryptThis[x] = '0';
            break;
        }
        case  '?':
        {
            decryptThis[x] = '1';
            break;
        }
        case  '!':
        {
            decryptThis[x] = '2';
            break;
        }
        case  '=':
        {
            decryptThis[x] = '3';
            break;
        }
        case  '#':
        {
            decryptThis[x] = '4';
            break;
        }
        case  '^':
        {
            decryptThis[x] = '5';
            break;
        }
        case  '%':
        {
            decryptThis[x] = '6';
            break;
        }
        case  '+':
        {
            decryptThis[x] = '7';
            break;
        }
        case  '-':
        {
            decryptThis[x] = '8';
            break;
        }
        case  '"':
        {
            decryptThis[x] = '9';
            break;
        }
    }
}
return decryptThis;
}
4

2 回答 2

0

stoi(string) 而不是 atoi(string.c_str()) 解决了它。

更新:它没有解决它。

于 2012-09-26T08:29:26.207 回答
0

尝试改用 strtol

strtol (splitString[0].c_str(),NULL,10);

于 2012-09-26T08:12:52.847 回答