gpt4 book ai didi

iphone - 类 self 方法

转载 作者:行者123 更新时间:2023-12-03 21:16:10 25 4
gpt4 key购买 nike

我正在阅读维护良好的 GitHub 存储库中的一些 Objective-C 代码。 https://github.com/soffes/sskeychain/blob/master/SSKeychain.m

我遇到了一些奇怪的线条(至少在我看来很奇怪)。

+ (NSArray *)allAccounts {
return [self accountsForService:nil error:nil];
}

我被告知self在实例方法中指的是实例本身。那么在类方法中 self 意味着什么?

最佳答案

在类方法内部,self指的是代表相应Class的对象:

+ (NSArray *)allAccounts {
NSLog("%@", [self description]); // Will print the name of the class
return [self accountsForService:nil error:nil];
}

这与调用[self class]时在实例方法中获得的对象相同。

如果您想多态地调用上的方法,它会很有用。例如,您可以调用[[self alloc] init]来创建执行调用的类的新实例。

关于iphone - 类 self 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12878964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com