国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 安平县| 上林县| 怀仁县| 莎车县| 平定县| 深泽县| 大冶市| 丰台区| 台安县| 太原市| 万山特区| 周至县| 中超| 桦南县| 阿鲁科尔沁旗| 敖汉旗| 台中县| 万宁市| 格尔木市| 大悟县| 秦安县| 磐安县| 张家界市| 凤山市| 绥阳县| 正蓝旗| 彭水| 苗栗市| 广汉市| 丹东市| 鲁甸县| 东兴市| 东山县| 常山县| 井研县| 黄龙县| 绥滨县| 新郑市| 咸丰县| 介休市| 泽普县|