Weird usage of conditional operator (gt;?=)(条件运算符 (gt;?=) 的奇怪用法)
问题描述
我正在查看一些代码并看到类似这样的内容:
I was looking at some code and saw something like this:
int d = 1;
int somethingbigger = 2;
d >?= somethingbigger;
cout << d << endl;
我认为这应该输出 2.但我什至不能用 gcc 4.5.2 编译它.该代码是在 2005 年编写的,并使用 gcc 3.4.4 编译(不是 100% 确定).
I think this should output 2. But I can't even compile this with gcc 4.5.2. The code was written in 2005 and compiled with gcc 3.4.4 (not 100% sure).
谁能解释一下它是如何工作的以及为什么我不能用最近的编译器编译它.
Can someone explain how this works and why I can't compile this with a recent compiler.
推荐答案
这是最大"赋值运算符,一个 GCC 扩展.
This is the "maximum" assignment operator, a GCC extension.
如果未启用扩展,则您将无法使用此功能.
If the extension is not enabled, then you will not be able to use this feature.
自 4.0.1 起:
G++ 最小和最大运算符(<?
和>?
)及其复合形式 (<?=
) 和 >?=
) 已被弃用并将被在未来的版本中删除.使用这些运算符的代码应该是修改为使用 std::min 和 std::max 代替.
The G++ minimum and maximum operators (
<?
and>?
) and their compound forms (<?=
) and>?=
) have been deprecated and will be removed in a future version. Code using these operators should be modified to use std::min and std::max instead.
看起来 它们在 4.0.4 之前就消失了.
这篇关于条件运算符 (>?=) 的奇怪用法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:条件运算符 (>?=) 的奇怪用法
基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01