您好,登錄后才能下訂單哦!
在Objective-C中,繼承是通過創建一個子類并使其繼承自父類來實現的。子類會繼承父類的屬性和方法,并可以添加自己的屬性和方法。
以下是一個簡單的示例,展示如何在Objective-C中實現繼承:
// 父類
@interface ParentClass : NSObject
@property (nonatomic, strong) NSString *name;
- (void)printName;
@end
@implementation ParentClass
- (void)printName {
NSLog(@"Name: %@", self.name);
}
@end
// 子類
@interface ChildClass : ParentClass
@property (nonatomic, assign) NSInteger age;
- (void)printAge;
@end
@implementation ChildClass
- (void)printAge {
NSLog(@"Age: %ld", self.age);
}
@end
// 使用
ChildClass *child = [[ChildClass alloc] init];
child.name = @"Alice";
child.age = 25;
[child printName]; // 輸出:Name: Alice
[child printAge]; // 輸出:Age: 25
在上面的示例中,ChildClass
繼承自ParentClass
,因此ChildClass
可以訪問ParentClass
中定義的屬性和方法。通過繼承,子類可以重用父類的代碼,并可以添加額外的功能。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。