gpt4 book ai didi

c++ - 链接静态类成员函数会引发 undefined reference 错误C++

转载 作者:行者123 更新时间:2023-12-02 11:07:57 27 4
gpt4 key购买 nike

我在这类问题上经历了许多类似的话题,但是我仍然无法解决该错误。任何帮助,将不胜感激。

/*samp.h header file*/

#include<iostream>
using namespace std;

class test
{
private:
test();
public:
static void const_caller();
};

/*samp.cpp file*/

#include<iostream>
using namespace std;

class test
{
private:
test()
{
cout<<"priv cont called\n";
}
public:
static void const_caller()
{
cout<<"calling priv const\n";
}
};

/*main.cpp file */

#include"samp.h"
using namespace std;

int main(int argc, char **argv)
{
test::const_caller();
}

当我做
g++ samp.cpp main.cpp -o main.out

我得到这个错误
/usr/bin/ld: /tmp/ccHZVIBK.o: in function `main':
main.cpp:(.text+0x14): undefined reference to `test::const_caller()'

我已经解决了好一段时间了。

最佳答案

samp.cpp文件中,您再次定义测试类。

您需要包括samp.h header 并实现test类的方法:

#include "samp.h"

using namespace std;

test::test()
{
cout << "priv cont called\n";
}

void test::const_caller()
{
cout << "calling priv const\n";
}

关于c++ - 链接静态类成员函数会引发 undefined reference 错误C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61963715/

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