如果 stdafx.h 中已包含特定标头 - 我是否需要(必须/应该)将其显式包含在 .cpp 文件中?

发布于 2024-10-03 12:19:39 字数 73 浏览 7 评论 0原文

如果 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素年丶 2024-10-10 12:19:39

当为您创建 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文