构建错误“LNK2019:未解析的外部符号_WinMain @ 16”

时间:2012-01-25 21:14:54

标签: c++ visual-studio linker-errors

所以,我是C ++的总菜鸟,我需要认真的帮助。我打赌一些普通用户这甚至不是问题,所以请帮助我。

我在Visual Studio Professional中将其写为Win32控制台文件。

#include <iostream>
using namespace std;

int main()
{
    int i = 100;

    return 0;
}

在控制台中,我得到以下内容:

1>------ Build started: Project: Project1_RenatoAlegre, Configuration: Debug Win32 ------
1>Build started 1/25/2012 3:09:03 PM.
1>InitializeBuildStatus:
1>  Touching "Debug\Project1_RenatoAlegre.unsuccessfulbuild".
1>ClCompile:
1>  All outputs are up-to-date.
1>ManifestResourceCompile:
1>  All outputs are up-to-date.
1>MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup
1>c:\users\ren\documents\visual studio 2010\Projects\Project1_RenatoAlegre\Debug\Project1_RenatoAlegre.exe : fatal error LNK1120: 1 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:03.37
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

由于这个“1次失败”,我无法运行该程序。我必须在Visual Studio Professional中运行该程序。

2 个答案:

答案 0 :(得分:9)

  

项目属性 - &gt; C / C ++ - &gt;链接器 - &gt;系统 - &gt;子系统:控制台(/ SUBSYSTEM:CONSOLE)

如果你想要一个控制台项目。

答案 1 :(得分:2)

请将链接器设置中的subsystemWindows更改为Console

  • 右键单击Solution Explorer
  • 中的项目名称
  • 选择属性
  • 在配置属性中打开链接器
  • 子系统将是列表中的第一个项目。
  • 在下拉列表中选择Console (/SUBSYSTEM:CONSOLE)