gpt4 book ai didi

c++ - 将 .lib 项目转换为 exe 一个

转载 作者:太空宇宙 更新时间:2023-11-04 13:27:30 25 4
gpt4 key购买 nike

我有一个简单的 *.lib 项目,我想将其转换为控制台可执行文件。

General->Configuration 中设置属性后,键入 Application(.exe) 并编译我得到错误:

error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup

如何解决这个问题?

最佳答案

每个 C++ 程序都需要一个ma​​in 函数:

#include <iostream>

int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}

您的静态库可能没有。

关于c++ - 将 .lib 项目转换为 exe 一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32846878/

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