没有一种方法可以解决

时间:2015-01-25 22:25:44

标签: c++ eclipse

我找不到问题的正确名称,所以我会尽我所能解释这一点,这样你就能理解它并帮助解决我的问题。

我有3个班级,其中一个是主要的(数独),一个班级(桌子)和一个班级(卡西利亚)(董事会由盒子组成)。 当我想在主类中创建一个新的Tablero时,问题出现了,Tablero在构造函数中有2个int。

如果我在创建它时将两个整数放入Tablero t(int,int); ,在Casilla.h,Casilla.cpp,Tablero.cpp,一个错误显示卡西利亚的说法:"未定义参考卡西利亚'" vtable在Tablero中显示:"对于Tablero'"的未定义的引用,在主要的一个中使用Tablero的所有方法:此行的多个标记      - 未定义参考' Casilla :: ~Casilla()' (当该方法也使用卡西利亚时)      - 未定义引用' Tablero :: getCasillac(int,      INT)'      - 换行符:Sudoku.cpp [line:/ line]

另外,当我初始化Tablero t()时; ,所有其他问题都没有显示,但我不能在主类上使用任何方法。我尝试像这样初始化它,然后用getter和setter给Tablero参数,但是没有用。我将发布解决问题所需代码的重要部分(Tablero和Casilla构造函数以及问题仍然存在的主要部分)。

Casilla.h:

#ifndef CASILLA_H_
#define CASILLA_H_


using namespace std;

class Casilla {
public:
int fila;
int columna;
int numero;
Casilla();

void SetCasillaFull (int _fila, int _columna, int _numero);
void SetNumeroCasilla (int _numero);
int GetNumero();
void SetCasillaPosition (int _fila, int _columna);
};

 /* namespace std */

#endif /* CASILLA_H_ */

Casilla.cpp构造函数:

 // default constructor
 Casilla::Casilla()
 : fila(-1)
 , columna(-1)
 , numero(0)
 { }

Tablero.h:

#ifndef TABLERO_H_
#define TABLERO_H_
#include "Casilla.h"
#include <vector>
 using namespace std;

class Tablero {
public:
 int filas_;
 int columnas_;

Tablero(int filas,int columnas);

void setcol(int n);
void setfilas(int n);
vector<vector<Casilla> > getCasilla();

void setCasillac(int n ,int t, Casilla c);
Casilla getCasillac(int n ,int t);
};

 /* namespace std */

#endif /* TABLERO_H_ */

Tablero.cpp构造函数:

 Tablero::Tablero(int filas,int columnas)
   // The above is an initialization list
  // We initialize casilla_ as a vector of filas vectors of columnas     Casillas

  {filas_=filas;
   columnas_=columnas;}
 Casilla getCasillac(int n ,int t){
 return casilla_[n][t];

  }
 void setCasillac(int n ,int t,Casilla c){
  casilla_[n][t] = c;

  }

Sudoku(主要类):

#include <iostream>
#include "entorno.h"
#include "Tablero.h"
#include "Casilla.h"
using namespace std;
Tablero t(); //I create it here so I can use it in all the class, also, if I create in a method, the same error shows up.

 void runDemo() {
 t.getCasillac(i,j).SetNumeroCasilla(//int something//);
 t.setCasillac(int,int, casilla);
 }

  int main() {

  runDemo();

  return 0;
   }
  }

如果您需要更多代码,请说出来。我是一名经验丰富的Java程序员,从未在Netbeans中使用Java进行编程,而且我尝试制作数独游戏,虽然我知道面向对象编程的基础知识,但我很难找到c ++的所有那些.cpp和.h以及它创建对象的方法。

感谢任何向我解释问题所在的人,因为我真的希望从错误中吸取教训,而不仅仅是修复它们。

1 个答案:

答案 0 :(得分:1)

您无法在任何地方定义Casilla析构函数,但您也不需要。从类定义中删除行virtual ~Casilla()。如果您不想这样做,那么您需要在Casilla.cpp中定义析构函数:

Casilla::~Casilla() { }

您的Tablero课程也是如此 - 您声明了一个不必要的析构函数,但没有定义它。

您获取有关vtable的错误的原因是由于通常如何实现虚拟方法。为了使vtable成为属性,必须在链接时定义每个虚拟成员,并且你没有在任何地方定义虚拟析构函数。

此外,您使用方法Tablero::getCasillac(),但您还没有定义它。在Tablero.cpp中提供定义。