标签: c++
我必须放#include <iostream>&amp;头文件中有#include "stdafx.h"?
#include <iostream>
#include "stdafx.h"
我的头文件只包含函数原型。
答案 0 :(得分:1)
我碰巧知道stdafx.h是Visual Studio预编译头文件的默认名称,但您应该在问题中添加更多信息。您应该在使用预编译头的每个源文件的 top 中包含stdafx.h。至于iostream,如果你在头文件中没有使用它,你不需要包含它。