1
vote
Oxygene by Example – Singleton
RemObjects Blogs
– This is the first item in my series “Oxygene by Example”, this time about singletons. Singleton classes are used when there’s only ever one instance of a class needed. They differ from Static Classes in that they have an actual instance, can implement an interface and you can use them as parameters to a method. There are different ways of writing singletons, but the easiest way is by using a readonly class variable: type IObjectCache = interface method GetOrCreate(aName: string; aNeedNewValue: Func): T; end; GlobalObjectCache = class(IObjectCache) ...
Statistics
|
Visits by Source |
User Actions |




