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 曾经是一个安全的包含守卫吗?
基础教程推荐
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- CString 到 char* 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
