>?=运算符是什么意思? [英] What does the >?= operator mean?

查看:178
本文介绍了>?=运算符是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

查看此C ++ BigInt库,并找到 BigInt.cpp 文件。在顶部有一个关于兼容性的注释:

Looking through this C++ BigInt library and found the BigInt.cpp file. At the top there is a a comment at the top about compatibility:


这个类是为g ++编译器编写的,并使用一些g ++扩展(如long double和>?=运算符)。

This class was written for the g++ compiler and uses some of the g++ extensions (like "long double" and the ">?=" operator).

?= 运算符?

推荐答案

这是一个在GCC 4.2及更高版本中删除的GCC扩展。

It's a GCC extension that was removed in GCC version 4.2 and later.

a>?= b 的等价物是 a = max b); c>

还有一个非常类似的运算符 a<?= b 这意味着与 a = min(a,b); 相同。

There is also a very similar operator a <?= b which means the same as a = min(a, b);.

这篇关于&gt;?=运算符是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆