suchen

Heim  >  Fragen und Antworten  >  Hauptteil

ios - 为什么WXInvocationConfig这个抽象类会使用单例模式?

为什么WXInvocationConfig这个抽象类会使用单例模式?

+ (instancetype)sharedInstance
{
    static id _sharedInstance;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        _sharedInstance = [[self alloc] init];
    });
    
    return _sharedInstance;
}
黄舟黄舟2771 Tage vor625

Antworte allen(1)Ich werde antworten

  • PHP中文网

    PHP中文网2017-04-18 09:57:15

    这个地方之前有用到单例,现在没有用到,会考虑干掉,谢谢提示

    Antwort
    0
  • StornierenAntwort