Design Pattern-singleton)

Source: Internet
Author: User

Using system;
Namespace csdesingpattern
{
Class Singleton
{
Private Static Singleton minstance;
Private int x = 0;
Private Singleton (){}
Public static Singleton GetObject ()
{
If (minstance = NULL)
Minstance = new Singleton ();
Return minstance;
}
Public void setx (INT newval)
{
X = newval;
}
Public int getx ()
{
Return X;
}
Static void main (string [] ARGs)
{

Int val;
Singleton S1 = singleton. GetObject ();
Singleton S2 = singleton. GetObject ();
Console. writeline ("set X in the singleton object to 10 ");
S1.setx (10 );
Val = s2.getx ();
Console. writeline ("using the second Singleton variable to read X value x = {0}", Val );
Console. Readline ();
}
}
}

    • Design requirements:

      Define static members (indicating their own classes)

      Private Static Singleton minstance;

      Define the static creation function:

      Public static Singleton GetObject ()
      {
      If (minstance = NULL)
      Minstance = new Singleton ();
      Return minstance;
      }
      Usage: maintain one or a fixed number of instances, such as applications in ASP. NET.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.