对“类名的 vtable”的未定义引用

发布于 2024-12-03 12:11:51 字数 936 浏览 0 评论 0原文

可能的重复:
对 vtable 的未定义引用

我的文件中有一个 Student 类 - Student.h 这是它的构造函数:

class Student
{
protected:
  double _id;
  double _salary;
  double _grade_average;

public:
    Student(double id, double salary,double average):
        _id(id),_salary(salary),_grade_average(average)
    {}
};

然后我收到错误:

未定义对“学生 vtable”的引用

有什么问题?

这是一个 University.h 文件:

 #include "Student.h"
class University : public Student
{
public:
  virtual double getValue();
  University(char university_id,double id, double average,double salary):
    _university_id(university_id),Student(id,average,salary)
  {
  }

private:
  char _university_id;
  static double how_many;
  static double sum_avg_grades;
};

Possible Duplicate:
Undefined reference to vtable

I have a class Student on the file - student.h
and this is its constructor:

class Student
{
protected:
  double _id;
  double _salary;
  double _grade_average;

public:
    Student(double id, double salary,double average):
        _id(id),_salary(salary),_grade_average(average)
    {}
};

And then I get the error:

undefined reference to 'vtable for Student'

What is the problem?

this is a University.h file:

 #include "Student.h"
class University : public Student
{
public:
  virtual double getValue();
  University(char university_id,double id, double average,double salary):
    _university_id(university_id),Student(id,average,salary)
  {
  }

private:
  char _university_id;
  static double how_many;
  static double sum_avg_grades;
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不回头走下去 2024-12-10 12:11:51

有几件事。

  1. 将下划线放在变量名称后面。作为以以下开头的名称
    编译器可以使用下划线。
  2. 如果您打算,请确保定义至少一个虚拟函数
    从它继承或使用 RTTI。 (例如虚拟析构函数)
  3. 确保每个声明的函数都有一个相应的
    执行。

A couple of things.

  1. Put the underscore after the variable name. As names that start with
    an underscore may be used by the compiler.
  2. Make sure to define at least one virtual function if you plan on
    inheriting from it or using RTTI. (ex. a Virtual Destructor)
  3. Make sure that every declared function has a corresponding
    implementation.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文