[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Singleton classes and Singleton pattern

Wilhelm

10/11/2006 1:02:00 PM

I just happened upon singleton classes, and was wondering two things:

1) There's no difference between these two codes, right? Is there an
advantage or disadvantage over either? Does Ruby put bar() into the
same virtual class object for both?

class Foo
class << self
def bar
end
end
end

class Foo
def self.bar
end
end

2) A singleton class has nothing to do with the singleton design
pattern, right? They only share the same name because there is only
ever one of them.

1 Answer

dblack

10/11/2006 1:08:00 PM

0