我找不到适合自己问题的合适标题,所以我将尽我所能解释这一点,以便您可以理解并帮助解决我的问题。
我有3个班级,其中1个是主班级(数独),一个班级板(Tablero)和一个班级箱(casilla)(板由盒子组成)。
当我想在主类中创建一个新的Tablero时,问题就来了,Tablero在构造函数中有2个int。
如果在创建表时将两个int都放在Tablero中t(int,int); ,在Casilla.h,Casilla.cpp和Tablero.cpp中,错误显示了在Casilla中的错误:“对'vtable for Casilla的未定义引用'”和在Tablero中显示:“对'vtable for Tablero的未定义引用'”,最主要的是使用Tablero的所有方法:在此行使用多个标记
-对'Casilla ::〜Casilla()的未定义引用(当该方法也使用Casilla时)
-对'Tablero :: getCasillac(int,
int)'
-断点:Sudoku.cpp [line:/ the 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;
}
数独(主类):
#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进行编程,尽管我了解面向对象编程的基础知识,但我仍在尝试制作数独功能,但是所有.cpp和。 c ++的h,它是创建对象的方式。
感谢向我解释问题所在的人,因为我真的希望从错误中学习,而不仅仅是修复错误。
最佳答案
您无需在任何地方定义Casilla
析构函数,但实际上也不需要。从类定义中删除行virtual ~Casilla()
。如果您不想这样做,则需要在Casilla.cpp中定义析构函数:
Casilla::~Casilla() { }
Tablero
类也是如此-您声明了不必要的析构函数,但未定义它。关于vtable出现错误的原因是由于通常如何实现虚拟方法。为了使vtable成为属性构建,必须在链接时定义每个虚拟成员,并且您没有在任何地方定义虚拟析构函数。
另外,您使用了方法
Tablero::getCasillac()
,但是您也没有定义它。在Tablero.cpp中提供定义。