Вопрос

I need class that has singleton behaviour.

What's the difference between using the Singleton module...

require 'singleton'

class X
    include Singleton

    def set_x(x)
        @x = x
    end

    def test
        puts @x
    end
end

X::instance.set_x('hello')
X::instance.test

...and using class methods and class instance variables?

class X
    def self.set_x(x)
        @x = x
    end

    def self.test
        puts @x
    end
end

X::set_x('hello')
X::test
Это было полезно?

Решение

Nothing, as you wrote your code--but a singleton is a class that only allows a single instance. Nothing in the second code snippet disallows instantiation of multiple instances.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top