码迷,mamicode.com
首页 > 其他好文 > 详细

Ruby的细化(refine关键字)

时间:2017-02-04 21:19:10      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:log   str   color   efi   pre   例子   ruby   ons   mod   

  • refine关键字用于局部打开类
  • 使用时用using ModuleNamge
  • 例子来源:《Ruby元编程》2.4.3
  • module StringExtensions
        refine String do
            def reverse
                "esrever"
            end
        end
    end
    
    module StringStuff
        using StringExtensions
        p "my_string".reverse #=>"esrever"
    end
    
    p "my_string".reverse #=>"gnirts_ym"

     

Ruby的细化(refine关键字)

标签:log   str   color   efi   pre   例子   ruby   ons   mod   

原文地址:http://www.cnblogs.com/nightcatcher/p/6366319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!