How to construct muliton object

Answers were Sorted based on User's Feedback



How to construct muliton object..

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 to construct muliton object..

Answer / sudhirkature

void main()

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Define inline function

1 Answers  


Is std :: string immutable?

0 Answers  


What are the 2 main types of data structures?

0 Answers  


implement stack using stack.h headerfile functions

1 Answers   Exilant, GMG, Subex, University,


Explain one-definition rule (odr).

0 Answers  






Difference between delete and free.

0 Answers  


What does it mean to declare a member variable as static?

0 Answers  


What is the difference between C and CPP?

0 Answers   iNautix,


What is setfill c++?

0 Answers  


what is a class? Explain with an example.

0 Answers  


catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;

2 Answers   Quark,


What is setf in c++?

0 Answers  


Categories