#pragma 一次相当于 c++builder

发布于 2024-08-20 22:13:37 字数 117 浏览 5 评论 0原文

对于 Codegear RAD Studio 2009,是否有相当于 #pragma Once 的东西?

我正在使用预编译头向导,我想知道在包含头文件时是否仍然需要使用包含防护?

Is there anything equivalent to #pragma once for Codegear RAD Studio 2009?

I am using the precompiled header wizard and I would like to know if it is still necessary to use include guards when including header files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

心不设防 2024-08-27 22:13:37

C++Builder 2010 中添加了对 #pragma Once 的支持
在 C++Builder 2009 及更早版本中,未知的编译指示将被忽略。我建议

#ifndef X 
#define X
//code 
#endif

在不支持 #pragma Once 的 C++Builder 版本中使用样式头防护。

Support for #pragma once was added in C++Builder 2010
In C++Builder 2009 and earlier, the unknown pragma will simply be ignored. I would suggest using

#ifndef X 
#define X
//code 
#endif

style header guards in the versions of C++Builder that do not support #pragma once.

来日方长 2024-08-27 22:13:37

Rad Studio 支持#pragma Once,以及以下所有内容一个>。

Rad Studio supports #pragma once, along with all of the following.

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