这可能真的很简单,但它阻碍了我在 C++ 道路上的前进。我目前正在阅读加速的 C++,我决定过度使用其中的一个练习。这一切都运行良好,我的代码运行良好,直到我将其拆分为头文件和单独的源文件。当我导入包含我编写的一些函数的 .cpp 源文件时,一切运行正常。但是,当我尝试通过头文件导入函数时,它会严重失败,并且出现以下错误。我正在使用 Geany 的 gcc 进行编译,到目前为止一切正常。谢谢你的帮助。
错误:
g++ -Wall -o "quartile" "quartile.cpp" (in directory: /home/charles/Temp)
Compilation failed.
/tmp/ccJrQoI9.o: In function `main':
quartile.cpp:(.text+0xfd): undefined reference to `quartile(std::vector<double, std::allocator<double> >)'
collect2: ld returned 1 exit status
“统计.h”:
#ifndef GUARD_stats_h
#define GUARD_stats_h
#include <vector>
std::vector<double> quartile(std::vector<double>);
#endif
“stats.cpp”:
#include <vector>
#include <algorithm>
#include "stats.h"
using std::vector; using std::sort;
double median(vector<double> vec){
//code...
}
vector<double> quartile(vector<double> vec){
//code and I also reference median from here.
}
“四分位数.cpp”:
#include <iostream>
#include <vector>
#include "stats.h" //if I change this to "stats.cpp" it works
using std::cin; using std::cout;
using std::vector;
int main(){
//code and reference to quartile function in here.
}