gpt4 book ai didi

Ruby 运算符优先级表

转载 作者:数据小太阳 更新时间:2023-10-29 06:22:24 24 4
gpt4 key购买 nike

给我一​​个确定的、经过同行评审/维护的 Ruby 优先级表(运算符非运算符修饰符)。

多年来,我不得不依赖以下来源获取此信息:

1. http://phrogz.net/programmingruby/language.html#table_18.4 - Pickaxe 一书记录了 2000 年 9 月发布的 Ruby 1.6,其中包含格式错误或拼写错误({ 列为一个赋值运算符)。

2. http://www.techotopia.com/index.php/Ruby_Operator_Precedence - 上述 Pickaxe 表的近似副本,包括错误的 {,并且不小心将 || 描述为逻辑“AND”.

3. http://www.tutorialspoint.com/ruby/ruby_operators.htm - 也是 Pickaxe 表的近似副本,虽然它将 || 的描述修复为逻辑“或”,但它仍然列出 { 作为赋值运算符。此外,它列出了 :: 并错误地将其描述为常量解析运算符(:: 不是运营商)。

4. http://my.safaribooksonline.com/book/web-development/ruby/9780596516178/expressions-and-operators/operators - The Ruby Programming Language 一书,记录了分别于 2003 年 8 月和 2007 年 12 月发布的 Ruby 1.81.9。这本书由 David Flanagan 和 Yukihiro Matsumoto(又名“Matz”,Ruby 的发明者)于 2008 年出版。它似乎是最新和最准确的运算符、非运算符、修饰符和支持信息列表。顺便提一下,在 2005 年左右,随着 Rails 于 2004 年 7 月发布,人们对 Ruby 的兴趣激增。

5. http://romhack.wikia.com/wiki/Ruby_operators - 还记录了 Ruby 1.9 中的运算符,并在其表中包含了非运算符和修饰符。

Ruby 2.0 was released in February 2013, and was intended to be fully backward compatible with Ruby 1.9.3 .在少数已知的不兼容性中,没有一个与运算符有关。

Ruby 2.1.0 was released on Christmas Day in 2013 ,并且类似地,没有列出运营商的不兼容性。

因此,我决定包含一个基于 Flanagan/Matz 书的答案,并将其设为社区维基

最佳答案

ruby 2.1.0、2.0、1.9、1.8

运算符 是一种记号,表示要对一个或多个操作数执行的操作(例如加法或比较)。操作数是表达式,运算符允许我们将这些操作数表达式组合成更大的表达式。 ( Ref )

N = arity = 运算符操作的操作数的数量。 ( Ref )

A = 关联性 = 当相同运算符(或具有相同优先级的运算符)依次出现在表达式中时的计算顺序。值 L 表示表达式从从左到右 求值。值 R 表示表达式是从从右到左求值的。而值 N 表示该运算符是非关联 并且不能在没有括号指定求值顺序的表达式中多次使用。 ( Ref )

M = definability = Ruby 将许多操作符实现为方法,允许类为这些操作符定义新的含义。 M 列指定哪些运算符是方法。标有 Y 的运算符是用方法实现的,可以重新定义,而标有 N 的运算符则不能。 ( Ref )

下表按照优先级降序排列(最高优先级在顶部)。

N A M  Operator(s)            Description
- - - ----------- -----------
1 R Y ! ~ + boolean NOT, bitwise complement, unary plus
(unary plus may be redefined from Ruby 1.9 with +@)

2 R Y ** exponentiation
1 R Y - unary minus (redefine with -@)

2 L Y * / % multiplication, division, modulo (remainder)
2 L Y + - addition (or concatenation), subtraction

2 L Y << >> bitwise shift-left (or append), bitwise shift-right
2 L Y & bitwise AND

2 L Y | ^ bitwise OR, bitwise XOR (exclusive OR)
2 L Y < <= >= > ordering

2 N Y == === != =~ !~ <=> equality, pattern matching, comparison
(!= and !~ may not be redefined prior to Ruby 1.9)

2 L N && boolean AND
2 L N || boolean OR

2 N N .. ... range creation (inclusive and exclusive)
and boolean flip-flops

3 R N ? : ternary if-then-else (conditional)
2 L N rescue exception-handling modifier

2 R N = assignment
2 R N **= *= /= %= += -= assignment
2 R N <<= >>= assignment
2 R N &&= &= ||= |= ^= assignment

1 N N defined? test variable definition and type
1 R N not boolean NOT (low precedence)
2 L N and or boolean AND, boolean OR (low precedence)
2 N N if unless while until conditional and loop modifiers

关于Ruby 运算符优先级表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21060234/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com