How to construct muliton object
Answers were Sorted based on User's Feedback
Answer / som shekhar
Multiton pattern is similar to singleton pattern but it
keeps the named instances in a key value pair.
In singleton pattern, the class will have only one instances
but in the multiton pattern it manages a map of named instances.
Is This Answer Correct ? | 1 Yes | 0 No |
How should a contructor handle a failure?
What is c++ similar to?
WHAT IS THE ABREVATION OF FORTRAN?
Have you used MSVC? What do you think of it?
What is the use of ::(scope resolution operator)?
Are vectors passed by reference c++?
How would you represent an error detected during constructor of an object?
What are the defining traits of an object-oriented language?
Which is better turbo c++ or dev c++?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
What's the order in which the local objects are destructed?
What is an inclusion guard?