What is __pragma and what are the differences between __pragma and #pragma(什么是 __pragma 以及 __pragma 和 #pragma 之间有什么区别)
问题描述
以下宏让我感到困惑.我想知道 __pragma 是什么,__pragma 和 #pragma 有什么区别.
The following macros confused me. I wondering what is __pragma and wwhat are the differences between __pragma and #pragma.
#define OPENVDB_START_THREADSAFE_STATIC_WRITE __pragma(warning(disable:1711))
#define OPENVDB_FINISH_THREADSAFE_STATIC_WRITE __pragma(warning(default:1711))
推荐答案
#pragma
本身就是一个预处理器指令;它不能在 #define
指令中使用.
#pragma
is a preprocessor directive in its own right; it can't be used within a #define
directive.
所以,这就是 __pragma
存在的原因:它提供了一种从使用它的宏展开的任何地方发出 pragma 的方法.
So, this is why __pragma
exists: it provides a way for a pragma to be issued from wherever the macro that uses it is expanded.
这是一个非标准的编译器扩展(MSVC、Intel 和一些 C 编译器在不同程度上支持它).另请参阅在较新版本的 C/C++ 标准(以及用途相同,但语法略有不同).
This is a non-standard compiler extension (MSVC, Intel, and some C compilers support it to varying degrees). See also the _Pragma
operator that is defined in newer versions of the C/C++ standards (and serves the same purpose, but with a slightly different syntax).
这篇关于什么是 __pragma 以及 __pragma 和 #pragma 之间有什么区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是 __pragma 以及 __pragma 和 #pragma 之间有什么区别
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01