Is there goto statement in Ruby?

白昼怎懂夜的黑 提交于 2019-11-26 22:03:09

问题


Is there a way to start at a specified line, like a goto statement?


回答1:


First, it would be statement, not a command. Second, see ruby-goto. Third, note

Category: Library/Evil




回答2:


There is the ruby command line switch -x.

 -x[directory]  Tells Ruby that the script is embedded in a message.
                Leading garbage will be discarded until the first that
                starts with “#!” and contains the string, “ruby”.  Any
                meaningful switches on that line will applied.  The end of
                script must be specified with either EOF, ^D (control-D),
                ^Z (control-Z), or reserved word __END__.  If the direc‐
                tory name is specified, Ruby will switch to that directory
                before executing script.

BTW, I'm pretty sure ruby-goto was, umm, a joke. I don't believe the download link has ever worked. Or am I just supposed to point people to it and keep quiet? I never know...

I liked Ryan's next line after announcing ruby-goto:

Stay tuned for the next evil module... ruby-malloc! Have a nice day.

Ryan is clearly a genius.




回答3:


I don't believe so (and, by all that's holy, it shouldn't).

But there's a goto module for it if you're feeling really masochistic.




回答4:


The goto lib is still with us :D https://rubygems.org/gems/goto/versions/0

Conserving the entire gem for posterity:

STACK = []

class Label
  attr_accessor :name;
  attr_accessor :block;

  def initialize(name, block);
    @name  = name
    @block = block
  end

  def ==(sym)
    @name == sym
  end
end

class Goto < Exception;
  attr_accessor :label
  def initialize(label); @label = label; end
end

def label(sym, &block)
  STACK.last << Label.new(sym, block)
end

def frame_start
  STACK << []
end

def frame_end
  frame = STACK.pop
  idx   = 0

  begin
    for i in (idx...frame.size)
      frame[i].block.call if frame[i].block
    end
  rescue Goto => g
    idx = frame.index(g.label)
    retry
  end
end

def goto(label)
  raise Goto.new(label)
end


来源:https://stackoverflow.com/questions/1634913/is-there-goto-statement-in-ruby

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!