Is #pragma once a safe include guard?(#pragma 曾经是一个安全的包含守卫吗?)
问题描述
我读到在使用 #pragma once 时有一些编译器优化,这可以导致更快的编译.我承认这是非标准的,因此可能会造成跨平台兼容性问题.
I've read that there is some compiler optimization when using #pragma once which can result in faster compilation. I recognize that is non-standard, and thus could pose a cross-platform compatibility issue.
大多数现代编译器在非 Windows 平台 (gcc) 上都支持这种功能吗?
Is this something that is supported by most modern compilers on non-windows platforms (gcc)?
我想避免平台编译问题,但也想避免后备防护的额外工作:
I want to avoid platform compilation issues, but also want to avoid the extra work of fallback guards:
#pragma once
#ifndef HEADER_H
#define HEADER_H
...
#endif // HEADER_H
我应该担心吗?我应该在这上面花费更多的精力吗?
Should I be concerned? Should I expend any further mental energy on this?
推荐答案
使用 #pragma once 应该适用于任何现代编译器,但我认为没有任何理由不使用标准 #ifndef 包括守卫.它工作得很好.一个警告是 GCC 在 #pragma once">3.4 版.
Using #pragma once should work on any modern compiler, but I don't see any reason not to use a standard #ifndef include guard. It works just fine. The one caveat is that GCC didn't support #pragma once before version 3.4.
我还发现,至少在 GCC 上,它识别标准的#ifndef 包含守卫并对其进行优化,所以它不应该比#pragma once 慢很多.
I also found that, at least on GCC, it recognizes the standard #ifndef include guard and optimizes it, so it shouldn't be much slower than #pragma once.
这篇关于#pragma 曾经是一个安全的包含守卫吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:#pragma 曾经是一个安全的包含守卫吗?
基础教程推荐
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 常量变量在标题中不起作用 2021-01-01
