1
vote
1answer
65 views

Singleton class vs. class with static member

Despite the many threads on that topic, I am still unclear as to when to choose which approach. I am hoping that by discussing a specific example, I will finally "get it." Note: My language here is ...
-1
votes
1answer
69 views

Initalization of static structure in C++

I'm implementing a thread safe singleton class in C++. I need a way of initializing the mutex which guards the getInstance() method. This is a self contained shared library, so I can't use a mutex ...
2
votes
2answers
728 views

Android Application life cycle and singelton

well most of us familiar with this pattern: public class MySingeltone { public String mSomeReferenceTypeData; public int mSomeValueTypeData; private static MySingeltone mInstance; ...
3
votes
7answers
315 views

Why can't we have non-const class-level static variables?

Why does the Visual C++ compiler refuse to compile this code? I obviously know that the error is: Error C2864: Singleton<T>::p: Only static const integral data members can be ...
2
votes
3answers
97 views

Is the ordering of static members sensitive in Swing?

I have this class, let's say, Foo. It extends JFrame and is a singleton. That being said, it has two static fields: 1) an instance of Foo and 2) a Color. Here's a code snippet of Foo: public class ...
0
votes
2answers
102 views

Singletons and memory management in Cocoa

I have a singleton as class method: +(WordsModel *) defaultModel{ static WordsModel *model = nil; if (!model) { model = [[[self alloc] init] autorelease]; } return model; ...
1
vote
9answers
458 views

Registering each C/C++ source file to create a runtime list of used sources

For a debugging and logging library, I want to be able to find, at runtime, a list of all of the source files that the project has compiled and linked. I assume I'll be including some kind of header ...
4
votes
5answers
320 views

Don't static members make classes kind of (global) objects themselves?

Every time I come across an implementation of the singleton pattern or any static classes (i.e. classes with (almost) only static members) I wonder whether this isn't actually a hack and therefore ...
1
vote
1answer
624 views

How can I animate a static object in a WPF storyboard

I have a WPF program to which I need to add a "Demo mode". Since I want my designers to be able to modify the demo mode without me having to recompile the program each time, I tough it would be a ...