国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 九江市| 龙南县| 仙居县| 安达市| 东辽县| 三穗县| 英山县| 浠水县| 荣成市| 赤壁市| 金溪县| 宁明县| 麻栗坡县| 定边县| 尼木县| 金门县| 林口县| 武威市| 綦江县| 若尔盖县| 衡阳市| 临江市| 东兰县| 尼勒克县| 会同县| 吴忠市| 建湖县| 清河县| 鲁甸县| 盐城市| 咸丰县| 海伦市| 黑龙江省| 开江县| 广宁县| 信阳市| 库尔勒市| 谷城县| 保靖县| 耒阳市| 舟山市|