gpt4 book ai didi

objective-c - 总是调用当前类的方法

转载 作者:搜寻专家 更新时间:2023-10-30 20:26:01 25 4
gpt4 key购买 nike

@interface A : NSObject

- (void) tmp;
- (void) foo;

@end

@implementation A

- (void) tmp {
[self foo];
}

- (void) foo {
NSLog(@"A");
}

@end

派生类

@interface B : A

- (void) foo;

@end

@implementation B

- (void) foo {
NSLog(@"B");
}

@end

代码

B * b = [[B alloc] init];
[b tmp]; // -> writes out B

有没有办法实现 A,所以在 A 类的 [self tmp] 中调用 [self foo] 会导致调用 A:foo 而不是 B:foo

(因此调用 [b foo] == @"B"和调用 [b tmp] == @"A"后的输出)

有点像

@implementation A

- (void) tmp {
[ALWAYS_CALL_ON_A foo];
}

最佳答案

你可以使用super

@implementation B

- (void) tmp {
[super foo];
}
@end

关于objective-c - 总是调用当前类的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11326508/

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