由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 请教c++里函数调用的问题
相关主题
[合集] call-by-ref降低了C++程序可读性有没有用NetBean IDE编C++程序的
c++如果调用没参数的函数不用加()就好了问一个windows From application的问题
王银看kotlin(本文建议零售价 ¥15)Recommend a C++ IDE?
gvim 的问题【讨论】 你认为Linux里写C++代码用什么editor最方便:emacs (转载)
JetBrains自宫,大家可以给丫烧纸了,atom很牛的样子IDE for C++
Xerces-C++ in vs.net questionHelp: how to use Eclipse as C++ IDE in XP?
大家在linux下面用什么C++的IDE呢?Help: how to use Eclipse as C++ IDE in Linux? (转载)
What IDE do people use with C++ and Java , respectively?What is the best (free) PHP development toolds (IDE) ?
相关话题的讨论汇总
话题: c++话题: 函数话题: dev话题: cpp话题: 头文件
进入Programming版参与讨论
1 (共1页)
p*****c
发帖数: 20
1
我在头文件里声明了函数
bool cal_sum(int num,int &elem)
然后我另外写了一个文件是这个函数的主体 cal.cpp
在主函数文件里我include head.h 后,为什么还是link不到cal这个文件?
如果我在主函数里直接用 include cal.cpp,甚至都不需要头文件了。
请问如果用头文件的方式应该怎样调用那个外部函数 ? 直接include cal.cpp是合理
的做法吗?
p*****c
发帖数: 20
2
我用的是DevC++.同时打开主函数main.cpp和函数文件cal_sum.cpp,编译主函数的时候
出现undefined reference 错误。
m********a
发帖数: 1312
3
我猜你的link command有问题,没有包括cal.o
p*****c
发帖数: 20
4
应该在哪里加入link command呢?
m********a
发帖数: 1312
5
DevC++界面我不熟,至少因该有个log窗口可以看到compile和link command。
感觉你的link command只有main.o,漏掉了cal.o。
许多时候如果你依赖IDE自动编译,好像至少要搞个project之类的东西,这样才能保证
compile, link所有源文件。
p*****c
发帖数: 20
6
我试了一下VC++6,在里面建了一个project,然后加入所有的文件,运行正常。不过
没试过在devC++下面建立project。
k**f
发帖数: 372
7

You need to create a project in DevC++ and add both cpp files to the project.
Including the .h file makes the compiler happy, i.e., it can generate code
to call the function per the function prototype in the header file.
But if the function is implemented in another .cpp and not included in main.
cpp, the linker need to see the object code to put the executable.
That's why a non trivial program in C almost always needs a project file in
IDEs like VC++ and DevC++, or a makefile with the traditio

【在 p*****c 的大作中提到】
: 我试了一下VC++6,在里面建了一个project,然后加入所有的文件,运行正常。不过
: 没试过在devC++下面建立project。

1 (共1页)
进入Programming版参与讨论
相关主题
What is the best (free) PHP development toolds (IDE) ?JetBrains自宫,大家可以给丫烧纸了,atom很牛的样子
C++ IDE and compilerXerces-C++ in vs.net question
郁闷大家在linux下面用什么C++的IDE呢?
有人用Haskell吗What IDE do people use with C++ and Java , respectively?
[合集] call-by-ref降低了C++程序可读性有没有用NetBean IDE编C++程序的
c++如果调用没参数的函数不用加()就好了问一个windows From application的问题
王银看kotlin(本文建议零售价 ¥15)Recommend a C++ IDE?
gvim 的问题【讨论】 你认为Linux里写C++代码用什么editor最方便:emacs (转载)
相关话题的讨论汇总
话题: c++话题: 函数话题: dev话题: cpp话题: 头文件