// // Person.h // OC7_复合类内存管理(setter方法) // // Created by zhangxueming on 15/6/18. // Copyright (c) 2015年 zhangxueming. All rights reserved. // #import <Foundation/Foundation.h> #import "Dog.h" @interface Person : NSObject { Dog *_dog; } -…
概要 Association, Aggregation and Composition are terms that represent relationships among objects. They are very basic stuff of Object Oriented Programming. 关联 Association is a relationship among the objects. Association is "*a*" relationship amo…