搜尋

首頁  >  問答  >  主體

objective-c - OC中建立類別的單一實例方法所遇到的問題

建立一個BNRitemStore類別的單一實例

+(BNRitemStore *)sharedStore{
    static BNRitemStore *sharedStore = nil;
    if(!sharedStore){
        sharedStore = [[super allocWithZone:nil]init];
    }
    return sharedStore;
}

+(id)allocWithZone:(NSZone *)zone{
    return [self sharedStore];
   }

第一個方法中使用了allocWithZone方法,第二個方法中又使用了sharedStore方法,這二者不會造成循環嗎?該如何理解呢?

巴扎黑巴扎黑2766 天前276

全部回覆(1)我來回復

  • 大家讲道理

    大家讲道理2017-04-24 09:13:40

    第一個方法呼叫的是父類別的allocWithZone

    回覆
    0
  • 取消回覆