Singleton Class

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smartnik83
    New Member
    • Feb 2008
    • 2

    #1

    Singleton Class

    I need to write Program for singleton Class(class on which 1 object can be created if we to created second object it should give error message...) Can anybody help me in doing that....

    Thanks Abhishek
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by smartnik83
    I need to write Program for singleton Class(class on which 1 object can be created if we to created second object it should give error message...) Can anybody help me in doing that....

    Thanks Abhishek
    What have you done so far?
    Have you read any books/articles about it yet?

    Comment

    • BigDaddyLH
      Recognized Expert Top Contributor
      • Dec 2007
      • 1216

      #3
      Originally posted by smartnik83
      I need to write Program for singleton Class(class on which 1 object can be created if we to created second object it should give error message...) Can anybody help me in doing that....


      A better solution to failing when the client tries to create more instances is to design your class so they can only create one instance!

      Comment

      Working...