如何制作'
发布于 2024-11-08 19:05:30 字数 507 浏览 0 评论 0 原文

可能的重复:
>?= 运算符是什么意思?

发现了这个代码段

...
for(k=i+1;k<j;k++) r <?= go(i,k,b)+go(k,j,b);
for(k='A';k<='Z';k++) r <?= 1+go(i,j,k);
...

我 对 运算符感兴趣。在我看来,它应该将 r 的值与运算符的右侧进行比较,如果右侧大于 r 它应该将右侧分配给 r 。我想知道这个(我想是类似的运算符)在哪里定义,我应该做什么才能使它们可与 g++ 编译器一起使用?

Possible Duplicate:
What does the >?= operator mean?

I found this code segment

...
for(k=i+1;k<j;k++) r <?= go(i,k,b)+go(k,j,b);
for(k='A';k<='Z';k++) r <?= 1+go(i,j,k);
...

I'm interested in <?= operator. It seems to me that it should compare value of r with right side of the operator and in case that right side is greater than r it should assign right side to r. I would like to know where are this (and similar operators, I suppose) defined and what should I do make them available for use with g++ compiler?

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

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

发布评论

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

评论(3

情魔剑神 2024-11-15 19:05:30

运算符是一个 GCC 扩展,在 4.2 版本中被删除。请参阅此问题

使用 std::min 代替。

The <?= operator was a GCC extension that was removed in version 4.2. See this question.

Use std::min instead.

╭⌒浅淡时光〆 2024-11-15 19:05:30

我不认为这是一个有效的 C++ 运算符

I don't think that this is a valid C++ operator

喵星人汪星人 2024-11-15 19:05:30

不可行。 C++支持的运算符是固定的,你不能添加新的。

Not doable. The operators that C++ supports are fixed, you can't add new ones.

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