Ask your own question, for FREE!
Computer Science 18 Online
OpenStudy (anonymous):

can any body know design pattern in c++ ??

OpenStudy (goformit100):

sir plz clear the question to me

OpenStudy (anonymous):

yep, what do you want to know about them

OpenStudy (anonymous):

which design pattern

OpenStudy (anonymous):

How to implement singleton design in C++?

OpenStudy (anonymous):

The synchronize C++ attribute implements support for synchronizing the target method of an object. Synchronization allows multiple objects to use a common resource (such as a method of a class) by controlling the access of the target method. public class Singleton { private static Singleton instance = null; private Singleton() { } public static synchronized Singleton getInstance() { if (instance == null) { instance = new Singleton(); } return instance; } }

OpenStudy (anonymous):

thanks kevsturge for replay this is helpfull for me

OpenStudy (anonymous):

ok, if you have any trouble implementing it let me know

OpenStudy (anonymous):

Disregard kevsturge's response as he targets Java, not C++, as evident by both his mentioning of a synchronized keyword and the code he posted. A C++ singleton pattern implementation can be found here: http://stackoverflow.com/a/1008289/591495 Note, however, that in most contexts, the singleton is actually viewed as an anti-pattern. Be careful in how you apply it.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!