Checking for availability of C++0x algorithm additions(检查 C++0x 算法添加的可用性)
问题描述
我正在尝试找出给定实现支持对算法头的哪些添加(gcc 和 MSVC 就足够了).
I'm trying to figure out which of the additions to the algorithm headers are supported by a given implementation (gcc and MSVC would be enough).
最简单的方法是使用与核心功能相同的方法:检查编译器版本并在支持语言功能时定义宏.不幸的是,我找不到显示任一编译器版本号的列表.
The simple way would be to do it the same way as one would do it for core features: check the compiler version and define a macro if a language feature is supported. Unfortunately I cannot find a list that shows the version numbers for either compiler.
只是检查通用 C++0x 宏(GXX_EXPERIMENTAL 或 __cplusplus)就足够了,还是我应该检查编译器的更改列表并根据这些列表构建我的宏?
Is simply checking for a generic C++0x macro (GXX_EXPERIMENTAL or __cplusplus) enough or should I check the change lists for the compilers and build my macros based on those lists?
http://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.200x
推荐答案
由于所有编译器供应商都提供了一个很好的列表,列出了哪些版本可用,并且无论如何您都会测试功能,所以我会使用编译器版本来检查特定功能.或者要求用户至少使用一个好的版本,而不用担心它.
Since all compiler vendors provide a nice list of what's available in what version, and you would test the functionality anyways, I would use compiler versions to check for specific features. Or demand the user uses at least a good version, and not worry about it.
__cplusplus
不一定是 C++0x 宏,它什么也不告诉你.GXX_EXPERIMENTAL
从 GCC 4.3 开始就存在了,所以这也没什么用.
__cplusplus
is not necessarily a C++0x macro, it tells you nothing. GXX_EXPERIMENTAL
has existed since GCC 4.3, so that's pretty useless too.
这是 GCC 的.
这个是给 MSVC 的.(请注意:部分实施意味着损坏)
This one is for MSVC. (mind you: partially implemented means broken)
这个适用于英特尔.
这里您可以找到要检查特定编译器版本的宏.
Here you can find what macros to check against for a specific version of a compiler.
这篇关于检查 C++0x 算法添加的可用性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检查 C++0x 算法添加的可用性
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01