1

我正在尝试构建我的第一个 c++ 程序,并且我正在使用 Eclipse 插件。我正在使用他们的示例“Hello world”程序。它没有显示任何错误,但是当我点击构建时,它会记录以下内容:

**** 为项目 Hello world 重建配置调试 ****

**** 内部构建器用于构建 ****

构建错误

索引 5 处路径中的非法字符:Hello world.exe

有谁知道为什么会发生这个错误,或者如何解决它?

谢谢 :)

编辑:

我尝试创建自己的,我将在我的文件结构下方添加一张图片,但现在我收到以下错误:(我假设它是一个错误,因为它仍然无法运行,但它可能不会)

**** 为项目项目构建配置调试 ****

**** 内部构建器用于构建 ****

没有什么可以为项目构建

文件结构

4

1 回答 1

1

It appears the first part of the answer was to remove the space in the filename, as per the comment responses. I suspect your problem with "not outputting" is that the program prints and exits really fast (this is a gotcha that got me when I first started programming in C++). To fix this problem, try adding the following line after your cout statement:

sleep(5); // Wait 5 seconds before exiting the program
于 2014-04-27T13:06:18.350 回答