C++ Hello World 在 Windows 上冻结
C++ Hello World freezes on Windows
最后几天我开始学习C++。与每一种语言一样,我开始制作一个 Hello World 程序。代码是:
#include <iostream>
using namespace std;
int main() {
cout << "I'm doomed in Windows :(" << endl;
}
我用 g++(来自 MinGW)像这样编译它:
g++ -c hello.cpp
g++ -o hello hello.o
输出为:
hello.exe
但是当我打开 hello.exe 它冻结/不启动。我尝试通过命令行打开它和使用 GUI 打开它一样。它看起来像这样:
https://drive.google.com/file/d/0ByNRkSnhavxIaXh6a2JSaEpZV0k/view?usp=sharing
有人知道怎么回事吗?提前致谢!
PS:如果你想知道为什么我没有 post 图像内联,我不能。我需要 10 声望点 ^^.
问题已通过停用 Avast 解决,感谢 Hans Passant。也可以将可执行文件添加到 Avast 排除列表中。
最后几天我开始学习C++。与每一种语言一样,我开始制作一个 Hello World 程序。代码是:
#include <iostream>
using namespace std;
int main() {
cout << "I'm doomed in Windows :(" << endl;
}
我用 g++(来自 MinGW)像这样编译它:
g++ -c hello.cpp
g++ -o hello hello.o
输出为:
hello.exe
但是当我打开 hello.exe 它冻结/不启动。我尝试通过命令行打开它和使用 GUI 打开它一样。它看起来像这样:
https://drive.google.com/file/d/0ByNRkSnhavxIaXh6a2JSaEpZV0k/view?usp=sharing
有人知道怎么回事吗?提前致谢!
PS:如果你想知道为什么我没有 post 图像内联,我不能。我需要 10 声望点 ^^.
问题已通过停用 Avast 解决,感谢 Hans Passant。也可以将可执行文件添加到 Avast 排除列表中。