c++ - 没有一个方法可以解决

标签 c++ eclipse

我找不到适合我的问题的标题,所以我将尽我所能对此进行解释,以便您可以理解它并帮助解决我的问题。

我有 3 个类(class),其中 1 个是主类(class) (sudoku),一个类(class)是棋盘 (Tablero),还有一个类(class)是盒子 (casilla)(棋盘是由盒子组成的)。 当我想在主类中创建一个新的 Tablero 时,问题就来了,Tablero 在构造函数中有 2 个 int。

如果我在创建它时把两个整数都放在 Tablero t(int, int); ,在 Casilla.h、Casilla.cpp、Tablero.cpp 中,错误显示在 Casilla 中说:“未定义对‘Casilla 的 vtable’的引用”,在 Tablero 中显示:“未定义对‘vtable for Tablero’的引用”,在主要的方法中,所有使用 Tablero 的方法:此行的多个标记 - 未定义对“Casilla::~Casilla()”的引用(当该方法也使用 Casilla 时) - 未定义对'Tablero::getCasillac(int, 诠释)' - 行断点:Sudoku.cpp [line:/the line]

此外,当我初始化 Tablero t() 时; ,所有其他问题都没有显示,但我不能在主类上使用任何方法。我试着像这样初始化它,然后用 getter 和 setter 给 Tablero 参数,但没有用。我将发布理解问题所需的代码的重要部分(Tablero 和 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 和 . h of c++ 及其创建对象的方法。

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

最佳答案

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

Casilla::~Casilla() { }

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

您收到有关 vtable 的错误的原因是虚拟方法通常是如何实现的。为了构建 vtable,每个虚拟成员 都必须在链接时定义,并且您没有在任何地方定义虚拟析构函数。

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

关于c++ - 没有一个方法可以解决,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28142307/

相关文章:

c++ - visual studio 2010 c++调试符号已加载但找不到源代码

c++ - 字符串未使用 <openssl/aes> 正确解密

c++ - Eclipse,如果程序崩溃则看不到输出

c++ - 型铸结构件

c++ - QuickFIX C++ 库 - 关于 ThreadedSocketInitiator 的一般问题

html - IE11 BHO : Replacing ActiveX objects in HTML document

java - Android Studio 中 Android 库和 Java 库的区别

java - Drools 文件未找到异常

java - [Class].class.getResourceAsStream(...) 在某些目录中的 JAR 文件中使用时返回 null?

java - java 程序如何知道它是否已由 eclipse 的 `debug` 而不是 `run` 启动?