They say that early binding solves the problem of synchronization. I couldn't understand "how". Is this something special to Java or the same applies to C++ too?
so, with this method we actually won't require a mutex lock?

|
They say that early binding solves the problem of synchronization. I couldn't understand "how". Is this something special to Java or the same applies to C++ too? so, with this method we actually won't require a mutex lock?
|
|||
| show 8 more comments |
|
I think they are referring to creating the Singleton instance before starting/creating any threads, thus alleviating the need for synchronization at creation. EDIT: adding info about C++ and static variables In C++, static variables are also initialized before execution like David Harkness mentions for Java. One issue with this in C++ can be in embedded environments where calls to malloc/new cant be performed until after the system is initialized, in which case using a Singleton static initializer could be problematic. |
|||||||||||
|
|
The JVM ensures that each class is fully loaded before allowing any access to it via other threads. This means that all static variables, including |
|||||||||||
|
|
The answer is |
|||||||||
|
|
One of the things the lazy instantiation tried to solve (not only C++ related) was the static initialization order fiasco. This is a problem that you have little control over the order of initialization (with multiple translation units), but dependencies might require an object to already exist before the other can be created. With lazy instantiation, the object is created as needed, so as long as there is no circular dependency, you should be okay. If dependencies are an issue for you and you still want to avoid the cost of locking for each getInstance(), you can still do eager instantiation by initializing all your singletons before starting your threads by adding an Initialize() function to your classes. This way you can check with asserts that singletons are only initialized once and only accessed after they are initialized. Remark that:
|
|||
|
|
|
In case that you want that the singelton member will remain null until first call, you can sync only the creation. for example
|
|||||||||
|
if(instance == null) instance = new Singleton();. Gonna wait to see what the experts have to say though – Daan Timmer May 7 '12 at 8:34final. Apart from better enforcing the singleton pattern it could also mean better optimization opportunities by the JVM. – Marko Topolnik May 7 '12 at 8:49