好吧,我刚刚获得了新的 MSVS 2010 Beta 1,就像使用 2008 express 一样,我只是不知道如何编译任何东西,甚至连一个简单的 hello world 程序都没有。有人有任何指示吗?我通常只会收到一揽子失败消息。没有真实信息。
编辑:对此感到抱歉
#include <iostream>
using namespace std;
main()
{
cout << "hello world";
return 0;
}
我去建造,我得到:
1>----- 构建开始:项目:forkicks,配置:调试 Win32 ------
1>嵌入清单...
1>.\Debug\forkicks.exe.intermediate.manifest : 一般错误 c1010070: 无法加载和解析清单。该系统找不到指定的文件。
1>构建日志保存在“file://c:\Users\Randy\Documents\Visual Studio 2008\Projects\forkicks\forkicks\Debug\BuildLog.htm”
1>forkicks - 1 个错误,0 个警告 ========== 构建:0 个成功,1 个失败,0 个最新,0 个跳过 ======== ==
那是2008年
1>------ Build started: Project: For Kicks, Configuration: Debug Win32 ------
1>Build started 7/22/2009 9:36:39 PM.
1>_PrepareForBuild:
1> Creating directory "Debug\".
1> Creating "Debug\lastbuild.timestamp" because "AlwaysCreate" was specified.
1>ClCompile:
1> main.cpp
1>c:\users\randy\documents\visual studio 10\projects\for kicks\main.cpp(5): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:01.63
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
是 2010 年。我创建了一个 win32 项目,为其命名等。右键单击源文件,添加一个没有标题或任何内容的 C++ 文件。只是一个空白文件。
2010年新品:
1>------构建开始:项目:hoyeah,配置:调试Win32 ------ 1> 构建于 2009 年 7 月 22 日晚上 10:03:35 开始。 1>_PrepareForBuild: 1> 创建目录“Debug\”。 1> 创建“Debug\lastbuild.timestamp”,因为指定了“AlwaysCreate”。 1>准备构建: 1> 创建目录“C:\Users\Randy\Desktop\C++ Programs\hoyeah\Debug\”。 1>Cl编译: 1> 测试.cpp 1>清单资源编译: 1> Microsoft (R) Windows (R) 资源编译器版本 6.1.7000.0 1> 1> 版权所有 (C) Microsoft Corporation。版权所有。 1> 1> 1>MSVCRTD.lib(crtexew.obj) : 错误 LNK2019: 函数 ___tmainCRTStartup 中引用的无法解析的外部符号 _WinMain@16 1>C:\Users\Randy\Desktop\C++ Programs\hoyeah\Debug\hoyeah.exe : 致命错误 LNK1120: 1 unresolved externals 1> 1>构建失败。 1> 1>经过时间 00:00:01.25 ========== 构建:0 成功,1 失败,0 最新,0 跳过 ==========
编辑#2。我将如何将其更改为多字节?