objective-c系列-單例

來源:互聯網
上載者:User

標籤:

// 地球只有一個,所以聲明一個地球對象就可以了,千萬不能聲明兩個啊!同理,有時候一個類也有只能有一個對象的情況,例如伺服器,只想存到一個裡 // 面,這樣子,下次才可以取出上次存的資料。

 //用全域變數來實現單例模式

//在此定義一個全域變數 地球,然後在單例方法中一直返回這個全域變數,那也可以實現單例模式

Earth * global=nil;

 

//在單例方法中一直返回這個全域變數,但第一次調用時要建立這個對象

+(Earth *)defaultEarth

{

    if (global==nil) {

        global = [[ Earth alloc]init];

    }

    return global;

}

****************************************

//用靜態局部變數實現單例模式

 

+(Earth *)defaultEarth

{

    static Earth* obj=nil;

 

    if (obj==nil) {

        obj=[[Earth alloc]init];

    }

    return obj;

}

**************************************

用GCD實現單例,超簡單

- (Earth *)shareEarth

{

    static Earth *sharedEarthInstance = nil;

    static dispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{

        sharedEarthInstance = [[self alloc] init];

    });

    

    return sharedEarthInstance;

}

objective-c系列-單例

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.