没有一个方法可以解决
Not a single method can be resolved
我找不到适合我的问题的标题,所以我将尽我所能解释它,以便您能理解它并帮助解决我的问题。
我有 3 个 classes,其中 1 个是主要的(数独),一个 class 棋盘(Tablero)和一个 class 盒子(casilla) (板由盒子制成)。
当我想在主 class 中创建一个新的 Tablero 时,问题就来了,Tablero 在构造函数中有 2 个 int。
如果我在创建它的时候把两个整数都放进去 Tablero t(int, int); ,在 Casilla.h、Casilla.cpp、Tablero.cpp 中,在 Casilla 中显示错误:"undefined reference to 'vtable for Casilla'" 在 Tablero 中显示:"undefined reference to 'vtable for Tablero'",在主要使用 Tablero 的所有方法之一:此行有多个标记
- 对 'Casilla::~Casilla()' 的未定义引用(当该方法也使用 Casilla 时)
- 未定义对'Tablero::getCasillac(int,
诠释)'
- 行断点:Sudoku.cpp [line: /the line]
此外,当我初始化 Tablero t() 时; ,所有其他问题都没有显示,但我不能在主要 class 上使用任何方法。我试着像这样初始化它,然后用 getter 和 setter 给 Tablero 参数,但没有用。我将 post 了解问题所需的代码的重要部分(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;
}
数独(主要class):
#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 进行过编程,我正在尝试制作数独游戏,尽管我了解面向 object 的编程的基础知识,我很难找到 C++ 的所有那些 .cpp 和 .h,它是创建 objects.
的方法
感谢任何向我解释问题所在的人,因为我真的希望从我的错误中吸取教训,而不仅仅是修复它们。
您没有在任何地方定义 Casilla
析构函数,但实际上您也不需要。从 class 定义中删除行 virtual ~Casilla()
。如果您不想这样做,那么您需要在 Casilla.cpp:
中定义析构函数
Casilla::~Casilla() { }
你的 Tablero
class 也是如此——你声明了一个不必要的析构函数,但没有定义它。
您收到有关 vtable 的错误的原因是虚拟方法通常是如何实现的。为了 属性 构建 vtable, 每个虚拟成员 必须在 link 时定义,并且您没有在任何地方定义虚拟析构函数。
此外,您使用了方法Tablero::getCasillac()
,但您也没有定义它。在 Tablero.cpp.
中提供定义
我找不到适合我的问题的标题,所以我将尽我所能解释它,以便您能理解它并帮助解决我的问题。
我有 3 个 classes,其中 1 个是主要的(数独),一个 class 棋盘(Tablero)和一个 class 盒子(casilla) (板由盒子制成)。 当我想在主 class 中创建一个新的 Tablero 时,问题就来了,Tablero 在构造函数中有 2 个 int。
如果我在创建它的时候把两个整数都放进去 Tablero t(int, int); ,在 Casilla.h、Casilla.cpp、Tablero.cpp 中,在 Casilla 中显示错误:"undefined reference to 'vtable for Casilla'" 在 Tablero 中显示:"undefined reference to 'vtable for Tablero'",在主要使用 Tablero 的所有方法之一:此行有多个标记 - 对 'Casilla::~Casilla()' 的未定义引用(当该方法也使用 Casilla 时) - 未定义对'Tablero::getCasillac(int, 诠释)' - 行断点:Sudoku.cpp [line: /the line]
此外,当我初始化 Tablero t() 时; ,所有其他问题都没有显示,但我不能在主要 class 上使用任何方法。我试着像这样初始化它,然后用 getter 和 setter 给 Tablero 参数,但没有用。我将 post 了解问题所需的代码的重要部分(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;
}
数独(主要class):
#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 进行过编程,我正在尝试制作数独游戏,尽管我了解面向 object 的编程的基础知识,我很难找到 C++ 的所有那些 .cpp 和 .h,它是创建 objects.
的方法感谢任何向我解释问题所在的人,因为我真的希望从我的错误中吸取教训,而不仅仅是修复它们。
您没有在任何地方定义 Casilla
析构函数,但实际上您也不需要。从 class 定义中删除行 virtual ~Casilla()
。如果您不想这样做,那么您需要在 Casilla.cpp:
Casilla::~Casilla() { }
你的 Tablero
class 也是如此——你声明了一个不必要的析构函数,但没有定义它。
您收到有关 vtable 的错误的原因是虚拟方法通常是如何实现的。为了 属性 构建 vtable, 每个虚拟成员 必须在 link 时定义,并且您没有在任何地方定义虚拟析构函数。
此外,您使用了方法Tablero::getCasillac()
,但您也没有定义它。在 Tablero.cpp.