对链式比较运算符的语言支持 (x < y < z)

发布于 2024-10-01 04:30:12 字数 1432 浏览 4 评论 0 原文

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

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

发布评论

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

评论(5

浪推晚风 2024-10-08 04:30:12

它应该更常见,但我怀疑并不是因为它使解析语言变得更加复杂。

优点:

  • 坚持最少惊喜的原则
  • 读起来就像教数学一样
  • 减少认知负担(参见前面的 2 点)

缺点:

  • 语言的语法更复杂
  • 特殊情况句法糖

至于为什么不这样做,我的猜测是:

  • 语言作者没有没想到它
  • 在“最好有”列表中
  • 被认为没有足够的用处来证明实施的合理性

It should be more common, but I suspect it is not because it makes parsing languages more complex.

Benefits:

  • Upholds the principle of least surprise
  • Reads like math is taught
  • Reduces cognitive load (see previous 2 points)

Drawbacks:

  • Grammar is more complex for the language
  • Special case syntactic sugar

As to why not, my guesses are:

  • Language author(s) didn't think of it
  • Is on the 'nice to have' list
  • Was decided that it wasn't useful enough to justify implementing
卷耳 2024-10-08 04:30:12

好处太小,不足以证明使语言复杂化是合理的。

您并不经常需要它,而且只需多几个字符就可以轻松干净地获得相同的效果。

The benefit is too small to justify complicating the language.

You don't need it that often, and it is easy to get the same effect cleanly with a few characters more.

挽清梦 2024-10-08 04:30:12

Scheme(可能还有大多数其他 Lisp 家族语言)在其语法内有效地支持多重比较:

(< x y z)

这可以被视为具有三个参数的 < 函数的普通函数应用。请参阅6.2.5 数值运算 在规范中。

Clojure 也支持链式比较

Scheme (and probably most other Lisp family languages) supports multiple comparison efficiently within its grammar:

(< x y z)

This can be considered an ordinary function application of the < function with three arguments. See 6.2.5 Numerical Operations in the specification.

Clojure supports chained comparison too.

清醇 2024-10-08 04:30:12

自 20 世纪 60 年代末以来,链式比较一直是 BCPL 的一个特征。

Chained comparison is a feature of BCPL, since the late 1960s.

木緿 2024-10-08 04:30:12

我认为 ICON 是具有此功能的原始语言,并且在 ICON 中,它脱离了将布尔值作为特殊“失败”标签处理而将所有其他值视为 true 的方式。

I think ICON is the original language to have this, and in ICON it falls out of the way that booleans are handled as special 'fail' tags with all other values being treated as true.

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