can any body know design pattern in c++ ??
sir plz clear the question to me
yep, what do you want to know about them
which design pattern
How to implement singleton design in C++?
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; } }
thanks kevsturge for replay this is helpfull for me
ok, if you have any trouble implementing it let me know
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.
Join our real-time social learning platform and learn together with your friends!