Undefined reference to constructor(对构造函数的未定义引用)
问题描述
我是一名尝试 C++ 的 Java 开发人员.
I'm a Java developer experimenting with C++.
我刚刚创建了一个新课程.在我的其他课程中,我想要列出可以存储过滤器对象的列表.
I just created a new class. In my other class I want to have list where I can store Filter objects.
Filter.h
#ifndef FILTER_H_
#define FILTER_H_
class Filter {
public:
Filter(int id);
int id;
~Filter();
};
#endif /* FILTER_H_ */
Filter.cpp
#include "Filter.h"
Filter::Filter(int id) {
this.id = id;
}
Filter::~Filter() {
}
Cars.h
#include "Filter.h"
...
...
private:
std::vector<Filter> filters;
Cars.cpp
所以在这里的一个函数中我尝试这样做:
so in a function here I try to do this:
int id = 2;
Filter *filter = new Filter(id);
产生此错误:
Cars.cpp:120: undefined reference to `Filter::Filter(int)'
stl_construct.h:83: undefined reference to `Filter::~Filter()'
这是什么原因?
推荐答案
这个错误是链接器产生的,因为它看不到构造函数的定义在哪里.
The error is generated by the linker because it can not see where the definition of the constructor is located.
如果您使用的是 IDE,则应将两个 .cpp 文件添加到项目中,以便它们可以一起编译,并且链接器可以找到定义.不是,那么您必须自己组合它们 - 假设您使用的是 gcc:
If you are using an IDE, you should add both .cpp files to the project so that they can be compiled together and the definition would be found by the linker. It not, then you have to combine them yourself -assuming you are using gcc:
g++ cars.cpp filter.cpp
会将它们组合成一个可执行文件,并且不应该向您显示那个错误
will combine them into one executable and should not show you that error
这篇关于对构造函数的未定义引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:对构造函数的未定义引用
基础教程推荐
- C利用语言实现数据结构之队列 2022-11-22
- C++中的atoi 函数简介 2023-01-05
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- 一文带你了解C++中的字符替换方法 2023-07-20
- C/C++编程中const的使用详解 2023-03-26
- C++详细实现完整图书管理功能 2023-04-04
- C语言 structural body结构体详解用法 2022-12-06
- C语言基础全局变量与局部变量教程详解 2022-12-31
- 详解c# Emit技术 2023-03-25
- 如何C++使用模板特化功能 2023-03-05