今天早上,用刚下载回来的visual C++ 2010 express编hello world 出现了 ‘cout’is not a member of 'std' 解决方法是 把 #include "StdAfx.h"放在 #include <iostream>前面 我想问一下:为什么要在#include <iostream> 前面加 #include "StdAfx.h" 我在书上看到的 hello world 都没有 #include "StdAfx.h" 这个header file 谢谢。