国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > 綜合 > 正文

My Singleton in C#

2024-07-21 02:19:38
字體:
供稿:網(wǎng)友
//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){}
}
};


商業(yè)源碼熱門下載www.html.org.cn

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 和田县| 平乡县| 仁布县| 邳州市| 永定县| 辽阳市| 马公市| 阿巴嘎旗| 广平县| 遵义市| 丹棱县| 沂南县| 巩留县| 灵台县| 凤台县| 阳西县| 农安县| 木里| 客服| 沾化县| 许昌县| 大港区| 汝南县| 高陵县| 广德县| 策勒县| 荃湾区| 冷水江市| 正镶白旗| 舟曲县| 五河县| 鄂州市| 吕梁市| 女性| 沽源县| 巫溪县| 台州市| 泰来县| 赤水市| 鄯善县| 蓬莱市|