首页 > 其他 > 详细

[Ruby]How to create singleton class ?

时间:2015-08-19 08:12:13      阅读:246      评论:0      收藏:0      [点我收藏+]

Singleton is one design pattern in the software engineering. Ruby has its own special feature to declare singleton class. I will demonstrate two examples as below:

class Logger
  def initialize
    @log = File.open("log.txt", "a")
  end
   
  @@instance = Logger.new
 
  def self.instance
    return @@instance
  end
 
  def log(msg)
    @log.puts(msg)
  end
 
  private_class_method :new
end
 
Logger.instance.log('message 1')

require "singleton"

class Test
  
  include Singleton
  
  def idea
    puts "this is test"
  end
  
  def self.good
    puts "good idea"
  end
  
end

puts Test.good()

puts Test.instance.idea()

 

版权声明:本文博客原创文章,博客,未经同意,不得转载。

[Ruby]How to create singleton class ?

原文:http://www.cnblogs.com/lcchuguo/p/4741182.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!