gpt4 book ai didi

c++ - C++ 应用程序中对 `WinMain@16' 的 undefined reference ,带有 Code::Blocks

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

我刚刚做了一个小程序来测试java和C++继承之间的一些差异。它编译但我在链接时遇到问题:

mingw32-g++.exe  -o bin\Release\Tests2.exe obj\Release\Exec.o   -s -lmingw32  
c:/program files/codeblocks/mingw/bin/../lib/gcc/mingw32/4.7.1/../../../libmingw32.a(main.o):main.c:(.text.startup+0xa7): undefined reference to `WinMain@16'
collect2.exe: error: ld returned 1 exit status
Process terminated with status 1 (0 minutes, 0 seconds)
1 errors, 0 warnings (0 minutes, 0 seconds)

我不知道它是从哪里来的。我正在编译控制台应用程序,而不是 GUI 应用程序,而且我的主要方法格式正确:

class Exec{

public:
int main( int argc, const char* argv[] ){
Operation* op1=new Operation("add");
Operation* op2=new Operation("rest");
MyExtend* ext=new MyExtend(6,4, op1);
MyExtend* ext2=new MyExtend(6,4, op2);
cout << ext->getSum()->getValue() << endl;
cout << ext2->getRest()->getValue() << endl;
return 0;
}

};

我尝试添加 -lmingw32 但它也不起作用(无论如何都不应该添加)。我找到的所有答案都引用了 GUI 和主要问题,但事实并非如此。有任何想法吗?

祝一切顺利

最佳答案

在C++中,main函数是程序的入口,应该单独写,不要写在类中。

关于c++ - C++ 应用程序中对 `WinMain@16' 的 undefined reference ,带有 Code::Blocks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20365086/

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