代码的后期部分以某种方式影响前

时间:2016-04-28 16:59:24

标签: c++ c++11

我有这个程序:

#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <sstream>
#include <algorithm>

int main(int argc, const char * argv[]) {
    std::vector<int> task_scores;
    int n;
    std::cin >> n;
    for(int i = 0; i < n; i++) {
        int sc;
        std::cin >> sc;
        task_scores.push_back(sc);
    }
    std::map<std::string, std::vector<size_t>> student_solutions;
    std::string command = "";
    while(true) {
        std::vector<std::string> tok_com;
        getline(std::cin, command);
        std::stringstream strstream(command);
        std::string token = "";
        while (getline(strstream, token, ' ')) {
            std::cout << token;
            tok_com.push_back(token);
        }
        if (tok_com[0] == "SOLVED") {
            std::string name = tok_com[1];
            int task = std::stoi(tok_com[2]);
            if(std::find(student_solutions[name].begin(), student_solutions[name].end(), task) !=
               student_solutions[name].end()) {
                student_solutions[name].push_back(task);
            }
        }
    }
    return 0;
}

如果你注释掉if子句,那么代码就可以了。但是,如果你不这样做,那么在尝试cout令牌时,代码会以EXC_BAD_ACCESS停止。怎么会发生这种情况?

1 个答案:

答案 0 :(得分:2)

  

但是如果你不这样做,那么在尝试cout令牌时,代码会以EXC_BAD_ACCESS停止。怎么会发生这种情况?

if (tok_com[0] == "SOLVED") {
        // ^^^

要求至少有一个值实际存储在循环中的tok_com向量中。

在取消引用tok_com.empty()之前,您应该测试tok_com

if (!tok_com.empty() && tok_com[0] == "SOLVED") {
 // ^^^^^^^^^^^^^^^^^^^ 
    // ...
}

您实际遇到的是未定义的行为,不同于爆炸的冰箱从您的鼻孔中飞出的小恶魔或只是被抛出的异常您的调试环境或操作系统。