如果 stdafx.h 中已包含特定标头 - 我是否需要(必须/应该)将其显式包含在 .cpp 文件中?
如果 stdafx.h 中已包含特定标头 - 我是否需要(必须/应该)将其显式包含在 .cpp 文件(已包含 stdafx.h)中?
If a particular header is already included in stdafx.h - do I need to (have to/should to) to explicitly include it in a .cpp file (which already includes the stdafx.h) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当为您创建 stdafx 时,它通常是一个预编译头。
作为预编译头,有必要将其添加到任何标记为使用预编译头的 .cpp(通常添加到项目中的任何 cpp 除 stdafx.cpp 之外)
您不需要包含 stdafx.h 中已包含的头,再次包含它可能会给编译器带来额外的工作量。
When stdafx is created for you it is typically a precompiled header.
As a precomiled header it will be necessary to add it to any .cpp that is marked to use precompiled headers (normaly any cpp added to the project except for stdafx.cpp)
You don't need to include headers already included in stdafx.h, including it again may cause extra effort for the compiler.