Project1

标题: ruby有没有go_to? [打印本页]

作者: 受pia专用ID    时间: 2012-7-2 10:48
标题: ruby有没有go_to?
就是可以跳转到哪几行的方法dsu_plus_rewardpost_czw
作者: 铅笔描绘的思念    时间: 2012-7-2 11:07
本帖最后由 铅笔描绘的思念 于 2012-7-2 11:08 编辑

一般需要goto的话可以用Ruby的throw/catch来做。。。不过。。。RGSSMS没这东西。。。
引用《The Ruby Programming Language》上的例子:
RUBY 代码复制
  1. for matrix in data do             # Process a deeply nested data structure.  
  2.   catch :missing_data do          # Label this statement so we can break out.  
  3.     for row in matrix do  
  4.       for value in row do  
  5.         throw :missing_data unless value # Break out of two loops at once.  
  6.         # Otherwise, do some actual data processing here.  
  7.       end  
  8.     end  
  9.   end  
  10.   # We end up here after the nested loops finish processing each matrix.  
  11.   # We also get here if :missing_data is thrown.  
  12. end

goto不是Ruby关键字也不是内建方法……




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1