ruby 两种静态法_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > ruby 两种静态法

ruby 两种静态法

 2011/12/9 9:40:10  chen_miao  http://chen-miao.iteye.com  我要评论(0)
  • 摘要:1.不用selfclassTestclass<<selfdefaputs"staticmethod"endendend2.self的方式Ruby代码classTestdefself.aputs"staticmethod"endend调用Ruby代码Test.a转自:http://www.iteye.com/topic/1116041
  • 标签:Ruby

1.不用self

    class Test  
       class << self  
         def a  
           puts "static method"  
         end  
       end  
    end  

?

?

?2. self的方式

?

Ruby代码 ?
    class Test  
         def self.a  
           puts "static method"  
         end  
    end  

?

调用

?

Ruby代码 ?
Test.a  
?转自:http://www.iteye.com/topic/1116041
发表评论
用户名: 匿名