gpt4 book ai didi

c++ - 对 `function_name' 的 undefined reference

转载 作者:行者123 更新时间:2023-11-28 00:28:28 24 4
gpt4 key购买 nike

我从 Windows 转到了 Ubuntu,我想在 Ubuntu 上尝试一些 C++ 编程。所以这是非常简单的代码和非常愚蠢的错误,我无法解决:

马.h

#ifndef _horse_
#define _horse_

class Horse{

int speed;

public:

void saySomething();

};

#endif

马.cpp

#include "horse.h"
#include <iostream>

using namespace std;

void Horse::saySomething(){
cout << "iiiihaaaaaaa brrrrr."<<endl;
}

和 Main.cpp

#include "horse.h"

int main(){

Horse h;

h.saySomething();

}

在我编译(编译成功)并运行后,我得到了这个错误信息:

/tmp/ccxuDyrd.o: In function `main':
Main.cpp:(.text+0x11): undefined reference to `Horse::saySomething()'
collect2: ld returned 1 exit status

请以某种方式帮助我。

最佳答案

尝试

g++ -c main.cpp horse.cpp(编译)

g++ -o a.out main.o horse.o(链接)

关于c++ - 对 `function_name' 的 undefined reference ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23941308/

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