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

[Ruby]How to create singleton class ?

时间:2014-07-08 18:05:25      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:singleton   design pattern   instance   ruby   

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 ?,布布扣,bubuko.com

[Ruby]How to create singleton class ?

标签:singleton   design pattern   instance   ruby   

原文地址:http://blog.csdn.net/wonderfan/article/details/37499229

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