使用结构向量c ++的断言错误

时间:2016-03-01 22:13:27

标签: c++ assertion

我有一个程序,我想从字符串更新变量。该函数将读入一个字符串,查找是否是加法,减法等,然后将其添加到变量中。功能如下:

    using namespace std;

struct variable{
    string name;
    int value;
};

void update_varabile(string line, vector<variable> & v)
{
    char c = line[0];   //variable to be updated
    string b;
    char d[0];
    int flag = 0;       //counter
    int a = 0;
    int temp_value = 0;
    int perm_value = 0;
    for (int i = 0; i < v.size(); i++) {
        if (c == v[i].name[0]) {
            flag = 1;
            temp_value = v[i].value;
            break;
        }
    }
    if (flag == 1) {                //variable is present
        for (int i = 0; i< line.size(); i++) {
            if (line[i] == '+'|| line[i] =='-'|| line[i] == '*'|| line[i] =='/') {
                b[0] = line[i+1];               //assuming the integer is between 0 and 9
                d[0] = b[0];
                a = atoi (d);
            if (line [i] == '+') {
                perm_value = temp_value + a;
            } else if (line [i] == '-') {
                perm_value = temp_value - a;
            } else if (line [i] == '*') {
                perm_value = temp_value * a;
            } else if (line [i] == '/') {
                perm_value = temp_value / a;
            }
        }
        }
        for (int i = 0; i < v.size(); i++) {
            if (v[i].name[0] == 'c') {
                v[i].value = perm_value;
                break;
            }
        }
    }

}

主要的电话看起来像这样:

int main()
{
    variable a;
    int val = 0;
    string up = "c=c+2";
    string f = "c";
    vector<variable> q;
    a.name = f;
    a.value = val;
    q.push_back(a);
    update_varabile(up, q);
    return 0;
}

但是,当我运行代码时,收到此错误消息:

Assertion failed: ((m_->valid == LIFE_MUTEX) && (m_->busy > 0)), file C:/crossdev/src/winpthreads-git20141130/src/mutex.c, line 57

Process returned 1 (0x1)   execution time : 0.014 s
Press any key to continue.

我逐行运行调试器,它显示函数正确执行。我还试图在我的计算机上查找该C:/文件,但它不存在。不知道为什么这不起作用。

1 个答案:

答案 0 :(得分:0)

首先,摆脱所有休息。在每个case语句的末尾,只应在C ++中使用分隔符。几乎不可能用一堆休息读取代码,因为我必须下去找出每个中断的原因以及原因。如果你需要提前退出for循环,那么使用while循环。你不需要在if和else语句结束时中断,因为它们导致程序提前离开函数,如果使用if,else if和else条件格式化,你的if和else语句自然会跳过。

现在说过,你需要更好地分解你想要做的事情。 例如,你得到一个像这样的字符串值。 2 + 3 + 4-5 + 6 你的程序将从左到右阅读。我假设你想要它取第一个值为2,然后再加3,然后是4,依此类推第四个。

执行此操作的方法是首先解析字符串的int值,然后解析加法和减法值。换句话说,从字符串中读取int值,直到你达到一个不在0和9之间的值。然后看看那个非数值是否是你正在寻找的运算符。这样你的程序就不会绊倒像2555和2这样的值。

IE

//intValueHolder is a string.
while(i < line.size() && line[i] >= '0' && line[i] <= '9' ) {
      intValueHolder.push_back(string[i]);
}

然后,当你点击'+'或类似的东西时,将char值放在case语句中。并且不要忘记在末尾添加默认值以考虑垃圾输入,例如'a'。您可能希望保留该值,只需先获得左侧值,然后才能获得右侧值。但这听起来像你从左侧开始,所以你真的只需要找到它需要的运算符。我不会改写你的程序,因为这看起来像是学校的作业。但我会指出你正确的方向。如果我不理解您的问题,请告诉我。

如果您不仅限于字符串和向量,您可能还需要考虑使用队列。