- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我试过打印:
std::cout << __cplusplus;
并得到 1 作为输出。
我也尝试过:g++ -version
命令。它产生输出:
g++ (GCC) 4.4.7 20120313 (Red Hat 4.4.7-17)
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
如何通过上面的输出判断C++标准的版本??
或者还有其他办法吗??
我在某处发现,Boost.Config 有大量宏可用于测试对特定 C++11 功能的支持。
最佳答案
I have tried to print:
std::cout << __cplusplus;
And Getting 1 as output
听起来像__cplusplus
被强制进入 bool
.您可能应该显示完整的代码,而不是删节的代码段。
也许你可以投 __cplusplus
到unsigned
类型。或者您可能需要包含一个 C++ header ,例如 <iostream>
.但是,这样做时我无法重现您的结果:
$ cat test.cxx
#include <iostream>
int main(int argc, char* argv[])
{
std::cout << __cplusplus << std::endl;
std::cout << (unsigned int)__cplusplus << std::endl;
return 0;
}
$ ./test.exe
201402
201402
How to determine the version with the above output ?? Or Is there any other way ??
通常你要求编译器给你。另请参阅 echo '#include <iostream>' | g++ -x c++ -dM -E - | sort
的输出.下面的是来自 Fedora 25 和 GCC 6.3。
您可以通过添加 -march=native
为您拥有的特定 CPU 调整更多宏。 .然后你会看到像 __AES__
这样的预处理器定义。 , __PCLMUL__
, __SHA__
等
您还可以通过 -std=c++03
使用不同版本的 C++ 标准, -std=c++11
, -std=c++14
等
$ echo '#include <iostream>' | g++ -x c++ -dM -E - | sort
#define ADJ_ESTERROR 0x0008
#define ADJ_FREQUENCY 0x0002
#define ADJ_MAXERROR 0x0004
#define ADJ_MICRO 0x1000
#define ADJ_NANO 0x2000
#define ADJ_OFFSET 0x0001
#define ADJ_OFFSET_SINGLESHOT 0x8001
#define ADJ_OFFSET_SS_READ 0xa001
#define ADJ_SETOFFSET 0x0100
#define ADJ_STATUS 0x0010
#define ADJ_TAI 0x0080
#define ADJ_TICK 0x4000
#define ADJ_TIMECONST 0x0020
#define _ALLOCA_H 1
#define alloca(size) __builtin_alloca (size)
#define _ALLOCATOR_H 1
#define _ALLOC_TRAITS_H 1
#define __always_inline __inline __attribute__ ((__always_inline__))
#define __amd64 1
#define __amd64__ 1
#define _ANSI_STDDEF_H
#define _ASM_GENERIC_ERRNO_BASE_H
#define _ASM_GENERIC_ERRNO_H
#define __ASMNAME2(prefix,cname) __STRING (prefix) cname
#define __ASMNAME(cname) __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
#define _ATFILE_SOURCE 1
#define __ATOMIC_ACQ_REL 4
#define __ATOMIC_ACQUIRE 2
#define __ATOMIC_CONSUME 1
#define __ATOMIC_HLE_ACQUIRE 65536
#define __ATOMIC_HLE_RELEASE 131072
#define __ATOMIC_RELAXED 0
#define __ATOMIC_RELEASE 3
#define __ATOMIC_SEQ_CST 5
...
#define _T_PTRDIFF
#define _T_PTRDIFF_
#define __try try
#define _T_SIZE
#define _T_SIZE_
#define _T_WCHAR
#define _T_WCHAR_
#define _TYPEINFO
#define __U16_TYPE unsigned short int
#define __U32_TYPE unsigned int
#define __U64_TYPE unsigned long int
#define __u_char_defined
#define __uid_t_defined
#define __UID_T_TYPE __U32_TYPE
#define __UINT16_C(c) c
#define UINT16_C(c) c
#define __UINT16_MAX__ 0xffff
#define UINT16_MAX (65535)
#define __UINT16_TYPE__ short unsigned int
#define UINT16_WIDTH 16
#define __UINT32_C(c) c ## U
#define UINT32_C(c) c ## U
#define __UINT32_MAX__ 0xffffffffU
#define UINT32_MAX (4294967295U)
#define __uint32_t_defined
#define __UINT32_TYPE__ unsigned int
#define UINT32_WIDTH 32
#define __UINT64_C(c) c ## UL
#define UINT64_C(c) c ## UL
#define __UINT64_MAX__ 0xffffffffffffffffUL
#define UINT64_MAX (__UINT64_C(18446744073709551615))
#define __UINT64_TYPE__ long unsigned int
#define UINT64_WIDTH 64
#define __UINT8_C(c) c
#define UINT8_C(c) c
#define __UINT8_MAX__ 0xff
#define UINT8_MAX (255)
#define __UINT8_TYPE__ unsigned char
#define UINT8_WIDTH 8
#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL
#define UINT_FAST16_MAX (18446744073709551615UL)
#define __UINT_FAST16_TYPE__ long unsigned int
#define UINT_FAST16_WIDTH __WORDSIZE
#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL
#define UINT_FAST32_MAX (18446744073709551615UL)
#define __UINT_FAST32_TYPE__ long unsigned int
#define UINT_FAST32_WIDTH __WORDSIZE
#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL
#define UINT_FAST64_MAX (__UINT64_C(18446744073709551615))
#define __UINT_FAST64_TYPE__ long unsigned int
#define UINT_FAST64_WIDTH 64
#define __UINT_FAST8_MAX__ 0xff
#define UINT_FAST8_MAX (255)
#define __UINT_FAST8_TYPE__ unsigned char
#define UINT_FAST8_WIDTH 8
#define __UINT_LEAST16_MAX__ 0xffff
#define UINT_LEAST16_MAX (65535)
#define __UINT_LEAST16_TYPE__ short unsigned int
#define UINT_LEAST16_WIDTH 16
#define __UINT_LEAST32_MAX__ 0xffffffffU
#define UINT_LEAST32_MAX (4294967295U)
#define __UINT_LEAST32_TYPE__ unsigned int
#define UINT_LEAST32_WIDTH 32
#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL
#define UINT_LEAST64_MAX (__UINT64_C(18446744073709551615))
#define __UINT_LEAST64_TYPE__ long unsigned int
#define UINT_LEAST64_WIDTH 64
#define __UINT_LEAST8_MAX__ 0xff
#define UINT_LEAST8_MAX (255)
#define __UINT_LEAST8_TYPE__ unsigned char
#define UINT_LEAST8_WIDTH 8
#define __UINTMAX_C(c) c ## UL
#define UINTMAX_C(c) c ## UL
#define __UINTMAX_MAX__ 0xffffffffffffffffUL
#define UINTMAX_MAX (__UINT64_C(18446744073709551615))
#define __UINTMAX_TYPE__ long unsigned int
#define UINTMAX_WIDTH 64
#define __u_intN_t(N,MODE) typedef unsigned int u_int ##N ##_t __attribute__ ((__mode__ (MODE)))
#define __UINTPTR_MAX__ 0xffffffffffffffffUL
#define UINTPTR_MAX (18446744073709551615UL)
#define __UINTPTR_TYPE__ long unsigned int
#define UINTPTR_WIDTH __WORDSIZE
#define __ULONG32_TYPE unsigned int
#define __ULONGWORD_TYPE unsigned long int
#define __unix 1
#define __unix__ 1
#define unix 1
#define __UQUAD_TYPE unsigned long int
#define __USE_ATFILE 1
#define __useconds_t_defined
#define __USECONDS_T_TYPE __U32_TYPE
#define __USE_FORTIFY_LEVEL 0
#define __USE_GNU 1
#define __USE_ISOC11 1
#define __USE_ISOC95 1
#define __USE_ISOC99 1
#define __USE_ISOCXX11 1
#define __USE_LARGEFILE 1
#define __USE_LARGEFILE64 1
#define __USE_MISC 1
#define __USE_POSIX 1
#define __USE_POSIX199309 1
#define __USE_POSIX199506 1
#define __USE_POSIX2 1
#define __USER_LABEL_PREFIX__
#define __USE_UNIX98 1
#define __USE_XOPEN 1
#define __USE_XOPEN2K 1
#define __USE_XOPEN2K8 1
#define __USE_XOPEN2K8XSI 1
#define __USE_XOPEN2KXSI 1
#define __USE_XOPEN_EXTENDED 1
#define __USING_NAMESPACE_C99(name)
#define __USING_NAMESPACE_STD(name)
#define __UWORD_TYPE unsigned long int
#define __va_arg_pack() __builtin_va_arg_pack ()
#define __va_arg_pack_len() __builtin_va_arg_pack_len ()
#define _VA_LIST_DEFINED
#define __VERSION__ "7.1.1 20170622 (Red Hat 7.1.1-3)"
#define __WALL 0x40000000
#define __warnattr(msg) __attribute__((__warning__ (msg)))
#define __warndecl(name,msg) extern void name (void) __attribute__((__warning__ (msg)))
#define _WCHAR_H 1
#define __WCHAR_MAX__ 0x7fffffff
#define __WCHAR_MAX __WCHAR_MAX__
#define WCHAR_MAX __WCHAR_MAX
#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1)
#define __WCHAR_MIN __WCHAR_MIN__
#define WCHAR_MIN __WCHAR_MIN
#define __wchar_t__
#define __WCHAR_T
#define __WCHAR_T__
#define _WCHAR_T
#define _WCHAR_T_
#define _WCHAR_T_DECLARED
#define _WCHAR_T_DEFINED
#define _WCHAR_T_DEFINED_
#define _WCHAR_T_H
#define __WCHAR_TYPE__ int
#define __WCHAR_WIDTH__ 32
#define WCHAR_WIDTH 32
#define __WCLONE 0x80000000
#define __W_CONTINUED 0xffff
#define WCONTINUED 8
#define __WCOREDUMP(status) ((status) & __WCOREFLAG)
#define __WCOREFLAG 0x80
#define _WCTYPE_H 1
#define WEOF (0xffffffffu)
#define __W_EXITCODE(ret,sig) ((ret) << 8 | (sig))
#define WEXITED 4
#define __WEXITSTATUS(status) (((status) & 0xff00) >> 8)
#define WEXITSTATUS(status) __WEXITSTATUS (status)
#define __WIFCONTINUED(status) ((status) == __W_CONTINUED)
#define WIFCONTINUED(status) __WIFCONTINUED (status)
#define WIFEXITED(status) __WIFEXITED (status)
#define __WIFEXITED(status) (__WTERMSIG(status) == 0)
#define __WIFSIGNALED(status) (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)
#define WIFSIGNALED(status) __WIFSIGNALED (status)
#define __WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
#define WIFSTOPPED(status) __WIFSTOPPED (status)
#define __WINT_MAX__ 0xffffffffU
#define WINT_MAX (4294967295u)
#define WINT_MIN (0u)
#define __WINT_MIN__ 0U
#define _WINT_T
#define __WINT_TYPE__ unsigned int
#define __WINT_WIDTH__ 32
#define WINT_WIDTH 32
#define WNOHANG 1
#define __WNOTHREAD 0x20000000
#define WNOWAIT 0x01000000
#define __WORDSIZE 64
#define __WORDSIZE_TIME64_COMPAT32 1
#define __W_STOPCODE(sig) ((sig) << 8 | 0x7f)
#define WSTOPPED 2
#define __WSTOPSIG(status) __WEXITSTATUS(status)
#define WSTOPSIG(status) __WSTOPSIG (status)
#define __WTERMSIG(status) ((status) & 0x7f)
#define WTERMSIG(status) __WTERMSIG (status)
#define WUNTRACED 2
#define __wur
#define __x86_64 1
#define __x86_64__ 1
#define _XLOCALE_H 1
#define _XOPEN_SOURCE 700
#define _XOPEN_SOURCE_EXTENDED 1
关于c++ - 如何检查 Linux 操作系统中使用的 C++ 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45050678/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!