为了账号安全,请及时绑定邮箱和手机立即绑定

ruby静态方法的4种写法与单例方法的2种写法

标签:
Ruby
#静态方法的4种写法
class Test
  def Test.StaticMethod1
    puts "Test.StaticMethod1"
  end
   
  def self.StaticMethod2
    puts "Test.StaticMethod2"
  end
   
  class << Test
    def StaticMethod3
      puts "Test.StaticMethod3"
    end
  end
   
  class << self
    def StaticMethod4
      puts "Test.StaticMethod4"
    end
  end
end
   
Test.StaticMethod1
Test.StaticMethod2
Test.StaticMethod3
Test.StaticMethod4
#单例方法的2种写法
 
class Test
  def method1
    puts "method1"
  end
end
 
t1 = Test.new
 
def t1.singleMethod1
  puts "t1.singleMethod1"
end
 
class << t1
  def singleMethod2
    puts "t1.singleMethod2"
  end
end
 
t2 = Test.new
 
t1.method1
t2.method1
t1.singleMethod1
t1.singleMethod2
#t2.singleMethod1 #将报错
#t2.singleMethod2 #将报错


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消