写访问冲突异常

时间:2018-10-10 19:39:58

标签: c++ stack

我正在编写此程序,您必须在主程序中使用switch语句来修改堆栈,而push语句存在一些问题。输入要放入堆栈的值后,程序暂停并显示此错误: Exception thrown: write access violation. **this** was 0x1AD0112. occurred 错误指向我的cpp文件中的push()下的方法。

#include "Stack.h"

void Stack::push(int val) {
    top = top + 1;
    ary[top] = val;          //this is where the exception is thrown.
    //ary[top++] = val;
}

int Stack::pop() {
    top = top - 1;
    return ary[top + 1];
    //return ary[top--];
}

    int Stack::peek() const {
        return ary[top];
    }

    bool Stack::isFull() const {
        if (top == SIZE - 1)
            return true;
        else
            return false;
        //return top == SIZE - 1;
    }

    bool Stack::isEmpty() const {
        if (top == -1)
            return true;
        else
            return false;
        //return top == -1;
    }

    Stack::Stack() {
        top = -1;
    }

然后我在主体中调用该方法以将值放在堆栈的顶部。

#include "Stack.h"
#include <iostream>
using namespace std;

int main() {
    Stack s;
    int x;
    int y;
    char c;

    cin >> c;

    do {

        switch (c) {
        case 'P':           //push statement
            cin >> x;
            s.push(x);
            break;

        //case 'O':
            //y = s.pop();
            //cout << y << endl;
            //break;

        case 'K':
            y = s.peek();
            cout << y << endl;
            break;

        case 'Q':
            return 0;
            break;

        }

    } while (c != 'Q');
    return 0;
}

这也是头文件

#ifndef STACK_H
#define STACK_H

class Stack {
    private:
        int top;
        static const int SIZE = 10;
        int ary[SIZE];

    public:
        int pop();
        void push(int);
        int peek() const;
        bool isEmpty() const;
        bool isFull() const;
        Stack();

};

#endif

在输入第一个推入值后发生错误。任何帮助表示赞赏!谢谢

1 个答案:

答案 0 :(得分:0)

由于在switch case语句中唯一可以更改“ c”值的位置是在“ do while循环”之前,因此您最终陷入了所选择的循环中。如果您选择“ P”,则稍后键入的所有值都是要压入堆栈的值(因为您被卡在c ='P'中)将cin >> c行移到'do'部分内'switch'语句。这将使程序的行为更像您计划的那样。