#pragma 一次相当于 c++builder
对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
C++Builder 2010 中添加了对 #pragma Once 的支持
在 C++Builder 2009 及更早版本中,未知的编译指示将被忽略。我建议
在不支持 #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
style header guards in the versions of C++Builder that do not support #pragma once.
Rad Studio 支持
#pragma Once
,以及以下所有内容一个>。Rad Studio supports
#pragma once
, along with all of the following.