C ++未定义参考(即使包含) [英] C++ Undefined Reference (Even with Include)

查看:125
本文介绍了C ++未定义参考(即使包含)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果没有在main.cpp文件中显式包含TestClass.cpp文件,我无法编译这段简单的代码。我究竟做错了什么?提前致谢!

I cannot get this simple piece of code to compile without including the TestClass.cpp file explicitly in my main.cpp file. What am I doing wrong? Thanks in advance!

以下是代码:

TestClass.h

TestClass.h

#ifndef TESTCLASS_H_
#define TESTCLASS_H_

class TestClass
{
    public:
        static int foo();
};

#endif

TestClass.cpp

TestClass.cpp

#include "TestClass.h"

int TestClass::foo() { return 42; }

main.cpp

#include <iostream>

#include "TestClass.h"

using namespace std;

int main()
{
    cout << TestClass::foo() << endl;

    return 0;
}

以下是错误:

g++ main.cpp -o main.app
/tmp/ccCjOhpy.o: In function `main':
main.cpp:(.text+0x18e): undefined reference to `TestClass::foo()'
collect2: ld returned 1 exit status


推荐答案

将TestClass.cpp包含在命令行中,以便链接器可以找到函数定义:

Include TestClass.cpp into the commandline, so the linker can find the function definition:

g++ main.cpp TestClass.cpp -o main.app

或者,编译每个到他们自己的目标文件,然后告诉编译器将它们链接在一起(它将它们转发到链接器)

Alternatively, compile each to their own object file, then tell the compiler to link them together (it will forward them to the linker)

g++ -c main.cpp -o main.o
g++ -c TestClass.cpp -o TestClass.o
g++ main.o TestClass.o -o main.app

这篇关于C ++未定义参考(即使包含)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆