黑马程序员技术交流社区
标题:
什么是对象与对象之间的依赖关系?(用代码举例说明) ...
[打印本页]
作者:
射雕英雄马
时间:
2015-12-7 22:16
标题:
什么是对象与对象之间的依赖关系?(用代码举例说明) ...
Person 类
#import <Foundation/Foundation.h>
#import "Computer.h"
@interface Person : NSObject
+(void)playGames:(Computer *)computer;
@end
#import "Person.h"
@implementation Person
+(void)playGames:(Computer *)computer{
[computer playGames];
}
@end
Computer 类
#import <Foundation/Foundation.h>
@interface Computer : NSObject
-(void)playGames;
@end
#import "Computer.h"
@implementation Computer
-(void)playGames{
NSLog(@"开始玩游戏");
}
@end
#import <Foundation/Foundation.h>
#import "Person.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
Computer *cpu = [Computer new];
[Person playGames:cpu];
}
return 0;
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2