0

这可能真的很简单,但它阻碍了我在 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.
}
4

2 回答 2

7

编译失败,因为你只声明了这个函数。它的定义在不同的编译单元中,并且您没有将这两者链接在一起。

g++ -Wall -o quartile quartile.cpp stats.cpp,它会工作。

于 2009-09-27T12:28:30.447 回答
0

您需要告诉 g++ 两个 .cpp 输入文件。我不是 g++ 方面的专家,但它看起来像一个链接器错误。

g++ -Wall -o "四分位数" "quartile.cpp" "stats.cpp"

于 2009-09-27T12:29:09.977 回答