gpt4 book ai didi

c++ - 如何在 C++ 中链接程序

转载 作者:行者123 更新时间:2023-11-30 00:36:06 25 4
gpt4 key购买 nike

我的代码是:

测试.cpp

#include<iostream>
#include<boost/bind.hpp>
#include "extern.h"
using namespace std;
using namespace boost;
int fun(int x,int y){return x+y;}
/*
*void add(int &m,int &n);
*/
int main(){
int m=1;int n=2;
cout << m << " "<< n << endl;
add(m,n);
cout << m << " "<< n << endl;
return 0;

}

外部.h:

#include<iostream>
#include<boost/bind.hpp>
using namespace std;
using namespace boost;
void add(int &n,int &m);

外部.cpp:

#include<iostream>
#include<boost/bind.hpp>
using namespace std;
using namespace boost;

extern int m;
extern int n;

void add(int &n,int &m) {
n = n+1;
m = m+1;
}

当我编译它时

g++ -Wall -o test test.cpp

结果是:

/tmp/ccMHVRNo.o: In function `main':
test.cpp:(.text+0x7b): undefined reference to `add(int&, int&)'
collect2: ld returned 1 exit status

但是当我编译它时:

g++ -Wall -o test test.cpp extern.cpp

效果很好:

$ ./test
1 2
2 3

所以原因是test.cpp找不到add()函数的实现

但是我已经在test.cpp中添加了extern.h,为什么它仍然说“undefined reference to add(int&, int&)“?

最佳答案

头文件extern.h只是告诉你的程序函数的原型(prototype)是如何制作的。链接器需要函数的实际实现,所以它寻找代码 add(int&,int&) 引用,但它找不到它,除非你给编译器它需要的所有文件(在在这种情况下,extern.cpp 是链接器在寻找 add 函数时需要的文件。

关于c++ - 如何在 C++ 中链接程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16964945/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com