- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试用 C++ 编写图书馆系统程序。在该计划中有书籍、学生和图书馆系统类(class)。图书馆系统类将有动态的书籍和学生数组,这样我就可以将书籍或学生添加到系统中。在库系统的头文件中,我添加了
private:
int numberOfBooks;
int numberOfStudents;
Book* books;
Student* students;
这里没有问题,但是在它的cpp文件中,
LibrarySystem::LibrarySystem()
{
numberOfBooks = 0;
numberOfStudents = 0;
books = new Book[ numberOfBooks ];
students = new Student[ numberOfStudents ];
}
它给出了这样的错误
Error 1 error LNK2019: unresolved external symbol "public: __thiscall Book::Book(void)" (??0Book@@QAE@XZ) referenced in function "public: __thiscall LibrarySystem::LibrarySystem(void)" (??0LibrarySystem@@QAE@XZ) C:\Users\ŞEHZADE\Desktop\AKADEMİK\CS201\Homeworks\HW1\homework1\homework1\LibrarySystem.obj homework1
Error 2 error LNK2019: unresolved external symbol "public: __thiscall Student::Student(void)" (??0Student@@QAE@XZ) referenced in function "public: __thiscall LibrarySystem::LibrarySystem(void)" (??0LibrarySystem@@QAE@XZ) C:\Users\ŞEHZADE\Desktop\AKADEMİK\CS201\Homeworks\HW1\homework1\homework1\LibrarySystem.obj homework1
这里有什么问题?我只是想创建动态数组。还有其他类:
#ifndef BOOK_H
#define BOOK_H
#include <iostream>
#include <string>
using namespace std;
class Book
{
public:
Book( const int anId, const int aYear, const string aTitle, const string aAuthors, const int aStudentId, const string aStudentName );
Book( const int anId, const int aYear, const string aTitle, const string aAuthors );
Book();
void setBookId( const int anId );
int getBookId();
void setYear( const int aYear );
int getYear();
void setTitle( const string aTitle );
string getTitle();
void setAuthors( const string aAuthors );
string getAuthors();
void setStudent( const int aStudentId, const string aStudentName );
int getStudentId();
string getStudentName();
bool isReserved();
void clrReservation();
string printBook();
private:
int bookId;
int year;
string title;
string authors;
string studentName;
int studentId;
bool reservation;
};
#endif
#ifndef STUDENT_H
#define STUDENT_H
#include <iostream>
#include <string>
#include "Book.h"
using namespace std;
class Student
{
public:
Student( int, string, Book*, int );
Student( int, string );
Student( );
~Student();
void setName( const string aName );
string getName( );
void setId( const int anId );
int getId( );
void setBooks( Book *aBooks, const int aNumberOfBooks );
Book* getBooks( );
bool hasAnyBook( );
bool hasBook( Book aBook );
string printStudent( );
int getNumberOfBooks( );
private:
int id;
int numberOfBooks;
string name;
Book* books;
bool ifBook;
};
#endif
最佳答案
该错误意味着您声明了 Book
和 Student
的无参数构造函数,但您从未提供实现。
您需要在这些构造函数的cpp文件中编写代码来修复链接错误,或者在 header 中提供内联实现,或者删除无参数构造函数的声明,并将其他构造函数之一设为默认构造函数通过为其所有参数提供默认值。
注意:Book
的构造函数在其他参数中包含一个学生 ID 看起来非常可疑,因为 Book
对象意识到与 Student
对象。理想情况下,该关联应保存在 Book
和 Student
类之外。
关于C++动态对象数组,函数引用错误LNK2019,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22461390/
几天前我问了一个类似的问题,它帮助我找到了 __declspec() 的正确方向,但我又被卡住了。我会尽可能清楚。希望有人能告诉我我做错了什么。它可能是一些小而简单的东西。 项目信息: jc:
我想在某些特定路径中创建某些文件的快捷方式(.lnk)。例如在 ("H:\happy\hi\new.lnk") 中创建我的文件 ("D:\New folder\new.exe") 的快捷方式我想用 p
This question already has answers here: What is an undefined reference/unresolved external symbol er
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的 disk-on-key 中有一个可执行文件,位于 dir\program\prog.exe我想在 DoK 的根目录上有一个可执行文件的快捷方式,即 prog.lnk 将引用 dir\progra
我一直在寻找一种在 C# 中创建文件快捷方式的简单方法,但我只找到了执行此操作的外部 dll。这实际上非常令人惊讶,没有内置的方法可以做到这一点.. 无论如何,我知道 lnk 文件只是具有特定命令和给
我一直在寻找问题的解决方案,遇到了 JasonMArcher 回答的帖子,想知道我是否可以更具体地满足我的需求。 我们最近更换了一个新服务器,由于它的名称从//sbcmaster 更改为//sbcse
我有一堆.lnk文件,需要根据快捷方式指向的目标来区别对待它们。我发现很少有其他语言如何做到这一点,但与使用powershell做到这一点无关。 我已经试过了: $sh = New-Object -C
我在使用C++创建快捷方式时遇到问题。.lnk文件已创建,但是目标具有无效路径。 您能解释一下为什么这段代码没有创建正确的快捷方式吗?有人可以帮我修复我的代码吗? 这是代码 // RepChrome.
rmap_utils.h #ifndef UTILS_RANGE_MAP_H #define UTILS_RANGE_MAP_H #include #include #include #incl
这个问题在这里已经有了答案: Can't set value of static object field (error LNK2001: unresolved external symbol) (
我刚刚使用 NuGET 包管理器安装了 SFML 包。安装后。我从它的官方页面运行了一个基本程序。只需复制和粘贴。 #include int main() { sf::RenderWindo
这个问题在这里已经有了答案: Can't set value of static object field (error LNK2001: unresolved external symbol) (
这个问题已经有答案了: Windows shortcut (.lnk) parser in Java? (9 个回答) 已关闭 6 年前。 我在Windows的“最近的项目”中有一些文件夹/文件。我想
首先,对不起我的英语..如何将现有的快捷方式包含到我的解决方案中? 当我尝试将现有项目添加到我的项目中时,visual studio 似乎尝试添加链接目标,而不是链接本身,因为它给我以下错误: 找不到
我们有一个充满指向文件夹的快捷方式(.lnk 文件)的网络驱动器,我需要在 C# Winforms 应用程序中以编程方式遍历它们。 我有哪些实用选择? 最佳答案 添加 IWshRuntimeLibra
我正在编写 32 位服务应用程序,我希望能够在其中为登录用户 启动“开始”菜单项。我确实设法通过模拟用户并使用 CreateProcessAsUser 和命令行启动选定的 .lnk 文件来完成此任务:
当您尝试打开不再有效的快捷方式文件 (.lnk) 时,Windows 会提示您:“此快捷方式已被更改或移动,因此此快捷方式将不再正常工作。”是否有 python 代码可用于检测此类快捷方式是否不再有效
我有一个名为 Siemens NX 的程序的多个版本。 NX 使用环境变量进行配置。我需要 NX 10.0 使用一组与使用系统环境变量的 NX 7.5 不同的环境变量。因此,我编写了一个批处理文件来设
我有一个打开 *.postfix 文件的 c# 程序。 如果用户运行指向我的文件类型的 (.lnk) 快捷方式,我的程序将打开目标。 那么,我的程序怎么知道它是由 (.lnk) 快捷方式启动的(并获取
我是一名优秀的程序员,十分优秀!