吸气剂和分段故障

时间:2015-03-30 19:50:51

标签: c++ reference tabs segmentation-fault getter

我需要对我的计划提供一些帮助:

#include <iostream>
#include<conio.h>

using namespace std;


class Position {
public :
    int             line;
    int             column;

                    Position(int,int);
                    Position();
};
Position::Position(int n, int m) : line{n},column{m}{}

class Board {
private :
    int**           tab;
    int             nbline;
    int             nbcolumn;

public  :
                    Board(int, int);
    void            setValue(Position&, int);
    int             getValue(Position&);
    int             getNbline();
    int             getNbcolumn();
};


class Play {
private :
 // Play         m_instance;
    void            moves(Board, Position&); // quand le joueur joue
 // void            moves(Board, Position); // quand l'IA joue. Mettre une énum pour direction,
    bool            wincondition(Board);
    Play&           operator=(const Play&);

public :
// static Play&    Instance();

};

Board::Board(int m, int n) : tab{new int*[m]}, nbline{m}, nbcolumn{n}{

   int  x(0);
   for (int i = 0; i < m; ++i){
        tab[i] = new int[n];

        for(int j = 0; j < n; ++j) {
            tab[i][j] = x; x++;}}
}


void     Board::setValue(Position& p, int value)         { tab[p.line][p.column] = value; }
int      Board::getValue(Position& p)                    { return tab[p.line][p.column];  }
int      Board::getNbline()                              { return nbline;                 }
int      Board::getNbcolumn()                            { return nbcolumn;               }



void Play::moves(Board tab, Position& blank) {
   /* int             c = getch() ;
    Position        tmp;

    if(c==0 || c==224) {c = getch();


    switch(c){
    case 75 : //left
        if(blank.column-1>=0) {
                tmp.column = blank.column;
                tmp.line   = blank.line;

                tab.setValue(blank,tab.getValue(tmp));
                blank.column++;
                tab.setValue(blank, 0);
                }
        break;

    case 72 : // haut
        if(blank.line+1<=0) {
                tmp.column = blank.column+1;
                tmp.line   = blank.line;

                tab.setValue(blank,tab.getValue(tmp));
                blank.column++;
                tab.setValue(blank, 0);
            }
        break;


    case 77 ://droit
        if(blank.column+1<=tab.getNbcolumn()) {
                tmp.column = blank.column;
                tmp.line   = blank.line;

                tab.setValue(blank,tab.getValue(tmp));
                blank.column--;
                tab.setValue(blank, 0);
            }
        break;

    case 80 : //bas
        if(blank.line+1<=tab.getNbline()) {
                tmp.column = blank.column+1;
                tmp.line   = blank.line;

                tab.setValue(blank,tab.getValue(tmp));
                blank.column++;
                tab.setValue(blank, 0);
            }
        break;
    default : cout << "\n ERROR " << endl; break; // erreur
    }
}*/
}

int main()
{
    int             lines, columns;


    cout << "Enter number of lines" << endl;
    cin >> lines;
    cout << "Enter number of columns" << endl;
    cin >> columns;

    Board           tab(lines,columns);
    Position        pos(lines,columns);
    Position&       p = pos;


    for (int i = 0; i<lines;i++)
    {
        for(int j = 0; j<columns;j++)
        {
            cout << tab.getValue(p) << " ";
            if (i == lines) { cout << endl;}
        }
    }
    return 0;
}

当我在第139行拨打getValue时,我遇到了分段错误。获取值在第57行定义。执行getValue时,p.linep.column都在主函数的开头捕获了正确的值。

程序没有错误,只有2个警告因为我没有使用Play::moves个参数(因为目前在/* */之间,等待测试)。我将Code :: Blocks与-Wall -Wextra -pedantic -std=c++11一起使用。

我真的认为没有理由出现分段错误。我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

您正在使用设置为您的电路板大小的位置来调用get。由于数组基于0索引,因此数组的大小实际上超过了数组的末尾。

const int size = 100
int arr[size];  //0, 1, 2, ... 98, 99
arr[size];  // fail arr is 0-99 and size is 100