您的位置:首页 > 编程语言 > C#

My Singleton in C#

2004-08-04 20:54 399 查看
//MySingleton
using System;
//SingletonPage Class
class SingletonPage
{
//Fields
protected static SingletonPage checkoutpage;

//Constructor is protected to ensure Singleton
protected SingletonPage()
{
Console.WriteLine("if you see this line,then the only one instence is created!");
}

//Use this to Create SingletonPage instance
public static SingletonPage NewCheckOutPage()
{
if (checkoutpage==null)
checkoutpage= new SingletonPage();
return checkoutpage;
}

};
//-------------------------------------End of SingletonPage Class

//TestApp
class TestApp
{
public static void Main(string[] args)
{
Console.WriteLine("'create' pagea:");
SingletonPage pagea=SingletonPage.NewCheckOutPage();

Console.WriteLine("'create' pageb:");
SingletonPage pageb=SingletonPage.NewCheckOutPage();

Console.WriteLine("'create' pagec:");
SingletonPage pagec=SingletonPage.NewCheckOutPage();

Console.WriteLine("'create' paged:");
SingletonPage paged=SingletonPage.NewCheckOutPage();

while(true){}
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c# class system string null