Objective-C 继承 - Objective-C教程
在面向对象的编程中最重要的概念之一是继承。继承允许我们定义一个类在另一个类,这使得它更容易创建和维护应用程序方面。这也提供了一个机会,重用代码的功能和快速的执行时间。
当创建一个类,而不是写入新的数据成员和成员函数,程序员可以指定新的类继承现有类的成员。这种现有的类称为基类,新类称为派生类。
继承的想法实现是有关系的。例如,哺乳动物是一个动物,狗是哺乳动物,因此狗是动物等。
基类和派生类:
Objective-C中允许多重继承,也就是说,它只能有一个基类,但允许多层次的继承。Objective-C中的所有类的超类为NSObject。
@interface derived-class: base-class
考虑一个基类 Shape 和它的派生类Rectangle 如下:
#import <Foundation/Foundation.h>
@interface Person : NSObject
{
NSString *personName;
NSInteger personAge;
}
- (id)initWithName:(NSString *)name andAge:(NSInteger)age;
- (void)print;
@end
@implementation Person
- (id)initWithName:(NSString *)name andAge:(NSInteger)age{
personName = name;
personAge = age;
return self;
}
- (void)print{
NSLog(@"Name: %@", personName);
NSLog(@"Age: %ld", personAge);
}
@end
@interface Employee : Person
{
NSString *employeeEducation;
}
- (id)initWithName:(NSString *)name andAge:(NSInteger)age
andEducation:(NSString *)education;
- (void)print;
@end
@implementation Employee
- (id)initWithName:(NSString *)name andAge:(NSInteger)age
andEducation: (NSString *)education
{
personName = name;
personAge = age;
employeeEducation = education;
return self;
}
- (void)print
{
NSLog(@"Name: %@", personName);
NSLog(@"Age: %ld", personAge);
NSLog(@"Education: %@", employeeEducation);
}
@end
int main(int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog(@"Base class Person Object");
Person *person = [[Person alloc]initWithName:@"Raj" andAge:5];
[person print];
NSLog(@"Inherited Class Employee Object");
Employee *employee = [[Employee alloc]initWithName:@"Raj"
andAge:5 andEducation:@"MBA"];
[employee print];
[pool drain];
return 0;
}
上面的代码编译和执行时,它会产生以下结果:
2013-09-22 21:20:09.842 Inheritance[349:303] Base class Person Object
2013-09-22 21:20:09.844 Inheritance[349:303] Name: Raj
2013-09-22 21:20:09.844 Inheritance[349:303] Age: 5
2013-09-22 21:20:09.845 Inheritance[349:303] Inherited Class Employee Object
2013-09-22 21:20:09.845 Inheritance[349:303] Name: Raj
2013-09-22 21:20:09.846 Inheritance[349:303] Age: 5
2013-09-22 21:20:09.846 Inheritance[349:303] Education: MBA
访问控制和继承:
如果它在接口类中定义的派生类可以访问基类的私有成员,但它不能访问私有成员,在实现文件中定义。
根据谁可以访问它们,以下列方式,我们可以总结不同的接入类型:
派生类继承基类的方法和变量有以下例外:
扩展的帮助下,在实现文件与声明的变量是无法访问的。
扩展的帮助下实现文件中声明的方法是无法访问的。
在基类中继承的类中实现该方法的情况下,则该方法在派生类中被执行。