ruby - 为什么 Ruby 输出 [[ :rest]] when the parameter method is called on String objects?

标签 ruby parameters jruby irb

我在玩 jruby irb 时遇到了这种现象,即参数方法在字符串方法上调用时返回 [[:rest]]。 这不仅是字符串的情况,我还要举一个关于字符串的例子。

irb(main):042:0> String.new.methods-Object.methods
[:valid_encoding?, :casecmp, :to_java_bytes, :squeeze!,
 :is_utf8?, :slice, :hex, :[]=, :initialize_copy, :empty?,
 :oct, :rindex, :unseeded_hash, :%, :rjust, :chop, :index,
 :gsub!, :chomp!, :*, :+, :concat, :capitalize, :singularize,
 :titlecase, :each_line, :size, :deconstantize, :downcase!,
 :capitalize!, :to_sym, :humanize, :setbyte, :force_encoding,
 :sub, :reverse!, :swapcase, :scan, :gsub, :sum, :partition,
 :to_str, :codepoints, :swapcase!, :byteslice, :end_with?,
 :upto, :tr!, :[], :intern, :parameterize, :tableize, :chomp,
 :pluralize, :reverse, :mb_chars, :succ, :underscore, :titleize,
 :start_with?, :ljust, :tr, :chars, :chop!, :encode, :<<,
 :lstrip!, :dasherize, :prepend, :replace, :strip, :split,
 :to_i, :succ!, :to_f, :to_r, :rstrip!, :count, :to_c, :chr,
 :encoding, :camelcase, :slice!, :next!, :upcase, :bytesize,
 :demodulize, :delete!, :each_byte, :next, :classify, :squeeze,
 :downcase, :tr_s, :constantize, :crypt, :each_codepoint,
 :foreign_key, :insert, :delete, :camelize, :upcase!, :getbyte,
 :rpartition, :sub!, :unpack, :dump, :lines, :strip!, :ord,
 :safe_constantize, :center, :each_char, :match, :clear,
 :length, :to_java_string, :rstrip, :bytes, :ascii_only?,
 :tr_s!, :encode!, :lstrip, :to_json_raw, :to_json_raw_object,
 :included, :between?]

如您所见,上面的列表显示了 String 类的方法,当在上述任何方法上调用参数方法时,它会给出输出 # => [[:rest]]

irb(main):043:0> String.new.method(:each_line).parameters
[[:rest]]
irb(main):044:0> String.new.method(:slice).parameters
[[:rest]]

另一个例子是名为 Sidekiq 的 gem。在这种情况下,它显示方法类名 Stats 以及 rest

irb(main):049:0> Sidekiq::Stats.new.methods-Object.methods
[:scheduled_size, :enqueued, :failed, :processed, :default_queue_latency, :retry_size, :queues, :processes_size, :reset, :workers_size, :dead_size, :fetch_stats!]
irb(main):050:0> Sidekiq::Stats.new.method(:reset).parameters
[[:rest, :stats]]

谁能解释一下 rest 在这种情况下指的是什么?

最佳答案

parameters 将为您提供一对数组,第一个元素是一种参数类型,第二个元素是将接受它的变量的名称。大多数参数的类型都是 :req,这是一个必需的变量。可选参数,即具有默认值的参数,类型为 :opt。使用 splat 定义的参数具有 :rest 类型:这些参数将包含必需和可选参数之外的任何其他参数。还有新的 :keyrest,它是 doubly-splat 参数。

def foo(a, b=3, *c, **d); end
method(:foo).parameters
# => [[:req, :a], [:opt, :b], [:rest, :c], [:keyrest, :d]] 

如果剩余参数未命名,您只会得到 :rest 值而不是一对:

def bar(a, b=3, *); end
method(:foo).parameters
# => [[:req, :a], [:opt, :b], [:rest]]

许多原生实现的 Ruby 方法没有用精确的签名定义;底层 C 代码正在检查参数列表以确定调用了该方法的哪个用例。因此,在 Ruby 中 String#each_line 通常是这样的:

class String
  def each_line(separator=$/)
    #...
  end
end

这会给它签名[[:opt, :separator]],它实际上被定义为好像它是这样写的

class String
  def each_line(*)
    #...
  end
end

关于ruby - 为什么 Ruby 输出 [[ :rest]] when the parameter method is called on String objects?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41114259/

相关文章:

java.lang.ArithmeticException : Negative exponent in jruby

ruby - 循环扫描并单独替换匹配项

javascript - 设置与自身相等的点有什么意义?

c - 在c中将队列作为参数传递

parameters - 通过 Zeppelin 使用附加参数运行 Spark

java - buildr 构建已中止 - 无法从存储库下载

java - 在 jruby 中重写 java 方法时出现问题

ruby-on-rails - 仅在开发中缓慢 Sidekiq

Ruby 线程不打印 kafka 消息

java - JRuby:启动浏览器时 Watir 挂起