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中实现单例模式的方法,通过两个例子展示了如何创建单例类,并使用私有类方法和引入Singleton模块来确保类只有一个实例。
462

被折叠的 条评论
为什么被折叠?



