是>?或
发布于 2024-09-27 10:06:42 字数 344 浏览 2 评论 0 原文

我在 gcc 4.2.1 不接受的文件(非连续行)中遇到了以下几行 C++ 代码:

int frame = blk <? mBlkCnt-1;
mInsCnt = blk <? mBlkCnt;
mInsCnt = mInsCnt+1 <? mBlkCnt;
const int to_read = (mFileSz-byte_off) <? mBlkSz;

>?被用在代码中的各个地方。它们似乎是分配两个值中较小(或较大)值的简写,但我从未见过这种运算符组合。关于这是什么有什么想法吗?

I ran across the following lines of C++ code in a file (non-contiguous lines) that gcc 4.2.1 won't accept:

int frame = blk <? mBlkCnt-1;
mInsCnt = blk <? mBlkCnt;
mInsCnt = mInsCnt+1 <? mBlkCnt;
const int to_read = (mFileSz-byte_off) <? mBlkSz;

Both <? and >? are used in various places in the code. They appear to be a shorthand for assigning the smaller (or larger) of two values, but I've never seen this operator combination. Any ideas on what this is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坐在坟头思考人生 2024-10-04 10:06:42

They're called the min and max operators and were language extensions in earlier versions of gcc.

They are no longer supported.

白馒头 2024-10-04 10:06:42

可以肯定的是,它不是 C++ 运算符。它几乎类似于有向图,但肯定不是有效的有向图。无论如何,二合字母(如果支持的话)只会产生标点符号,而不是一个全新的运算符。

因此,为了回答您的问题,也许这个文件需要由某个预处理器进行预处理,将其转换为有效的 C++。

It's not a C++ operator, that's for sure. It almost resembles a digraph, but certainly not a valid one. In any case, a digraph, if supported, would just result in punctuation, not a whole new operator.

So, in answer to your question, perhaps this file needs to be preprocessed by some preprocessor that converts it to valid C++.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文