首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

ruby 的 Enumerable 步骤

2012-09-14 
ruby 的 Enumerable 方法grep是来判断是否存在符合条件的sub enumerablec IO.constantsc.grep(/SEEK/

ruby 的 Enumerable 方法
grep
是===来判断是否存在符合条件的sub enumerable

c = IO.constantsc.grep(/SEEK/)         #=> [:SEEK_SET, :SEEK_CUR, :SEEK_END]res = c.grep(/SEEK/) {|v| IO.const_get(v) }res                    #=> [0, 1, 2]


用来差方法很不错
array.public_methods.grep(/^each_(.*)$/){ puts $1}#index#with_index#entry#slice#cons#with_object
1 楼 fireDragonpzy 2012-02-23   Array.instance_methods

热点排行