Fork me on GitHub

OC基础学习4:复合(composition)

复合: 对象间的组合(类中中包括类)

composition在音乐中翻译为作曲:将多个组件组合在一起,配合使用,从而得到完整的作品。在OC中,复合是通过包含作为实例变量的对象指针实现的。

1
2
3
4
5
6
7
@interface Car : NSObject
{
Engine *engine;
Tire *tires[4];
}
* (void)print;
@end //Car

自定义NSLog()

NSLog()使用%@格式说明符表示输出对象,也就是NSLog()会给这个对象发送了description消息,然后对象的description方法生成一个NSString并将其返回。在类中提供description方法就可以自定义NSLog()如何输出对象。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@interface Tire : NSObject
@end //Tire 轮胎
@implementation Tire
- (NSString *)description {
return (@"I am a tire.");
}
@end

int main(int argc, const char * argv[]) {

Tire *tire = [Tire new];
NSLog(@"%@", tire); // 输出 "I am a tire."

return 0;
}

存取方法

  • 存取(accessor) 方法是用来读取或改变某个对象属性的方法。分为 getter方法 和 setter方法。
  • 应该尽量使用对象提供的存取方法,不要直接改变对象里面的值。
    存取方法总是成对出现的。
    命名方式:setter方法在要更改属性的加上前缀set;getter方法直接是属性名称。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    @interface Car : NSObject
    {
    Engine *engine;
    Tire *tires[4];
    }
    - (Engine *) engine;
    - (void) setEngine: (Engine *) newEngine;
    - (Tire *) tireAtIndex: (int) index;
    - (void) setTire: (Tire *) tire atIndex: (int) index;
    - (void)print;
    @end //Car
  • 在OC中所有对象间的交互都是通过指针实现的。

复合还是继承

继承的关系:“Is a”(是一个)。如三角形是一个形状,Slant6是一个发动机……
复合的关系:“has a”(有一个)。如形状有个填充颜色,汽车有个发动机和四个轮胎……

详细代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#import <Foundation/Foundation.h>

@interface Tire : NSObject
@end //Tire 轮胎
@implementation Tire
- (NSString *)description {
return (@"I am a tire.");
}
@end

@interface Engine : NSObject
@end //Engine
@implementation Engine
- (NSString *)description {
return (@"I am a Engine.");
} //description
@end

@interface Slant6 : Engine
@end //slant-6型号的发动机
@implementation Slant6

- (NSString *)description {
return (@"I am a slant-6型号的发动机.VROOM!");
}

@end

@interface AllWeatherRadial : Tire
@end // 新型轮胎
@implementation AllWeatherRadial

-(NSString *)description
{
return (@"I am a tire for rain or shine.");
}

@end


@interface Car : NSObject
{
Engine *engine;
Tire *tires[4];
}
- (Engine *) engine;
- (void) setEngine: (Engine *) newEngine;
- (Tire *) tireAtIndex: (int) index;
- (void) setTire: (Tire *) tire atIndex: (int) index;
- (void)print;
@end //Car
@implementation Car
- (Engine *) engine
{
return (engine);
} //engine
- (void) setEngine:(Engine *)newEngine
{
engine = newEngine;
} //setEngine
- (void) setTire:(Tire *)tire atIndex:(int)index
{
if (index<0 || index>3) {
NSLog(@"bad index (%d) in setTire:atIndex", index);
exit(1);
}
tires[index] = tire;
} // setTire
- (Tire *) tireAtIndex:(int)index
{
if (index<0 || index>3) {
NSLog(@"bad index (%d) in setTire:atIndex", index);
exit(1);
}
return tires[index];
} // tireAtIndex

- (id)init
{
if (self = [super init]) { //?
engine = [Engine new];
tires[0] = [Tire new];
tires[1] = [Tire new];
tires[2] = [Tire new];
tires[3] = [Tire new];
}
return (self);
}
- (void)print
{
NSLog(@"%@", engine);
NSLog(@"%@", tires[0]);
NSLog(@"%@", tires[1]);
NSLog(@"%@", tires[2]);
NSLog(@"%@", tires[3]);
}
@end


int main(int argc, const char * argv[]) {

Car *car = [Car new];

Engine *engine = [Slant6 new];
[car setEngine:engine];
for (int i=0; i<4; i++) {
Tire *tire = [AllWeatherRadial new];
[car setTire:tire atIndex:i];
}

[car print];

return 0;
}

--------------------本文结束👨‍💻感谢您的阅读--------------------
坚持原创技术分享,您的支持将鼓励我继续创作!
  • 本文标题: OC基础学习4:复合(composition)
  • 本文作者: AndyRon
  • 发布时间: 2017年07月22日 - 10:00
  • 最后更新: 2019年09月04日 - 11:50
  • 本文链接: http://andyron.com/2017/oc-basic-4-composition.html
  • 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!
0%