Aggregation
ClassA có dùng lớp và giữa ClassB nhưng không cho lớp khác truy xuất ClassB thông qua ClassA. Trong Objective C ta dùng thuộc tính là weak để thể hiện mối quan hệ này, code ví dụ như sau:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import "ObjCAggregation_ClassB.h" | |
@interface ObjCAggregation_ClassA : NSObject | |
- (instancetype)initWithObject:(ObjCAggregation_ClassB*)inputedObject; | |
- (BOOL)doAction; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "ObjCAggregation_ClassA.h" | |
@interface ObjCAggregation_ClassA () { | |
__weak ObjCAggregation_ClassB* refInstance; | |
} | |
@end | |
@implementation ObjCAggregation_ClassA | |
@synthesize classB; | |
- (instancetype)initWithObject:(ObjCAggregation_ClassB*)inputedObject { | |
if (self) { | |
refInstance = inputedObject; | |
} | |
return self; | |
} | |
- (void)dealloc { | |
NSLog(@"[Aggregation] dealloc"); | |
} | |
- (BOOL)doAction { | |
NSLog(@"[Aggregation] Action A"); | |
if (refInstance) { | |
[refInstance doAction]; | |
return YES; | |
} | |
return NO; | |
} | |
@end |
Theo sơ đồ này thì ta dùng property để lớp khác có thể truy xuất ClassB thông qua ClassA.
Code ví dụ trong Objective C như:
Unit Test giả sử ta huỷ đối tượng ClassB thì ClassA sẽ không gọi hàm trong ClassB được, do đó trong sơ đồ này nên dùng if để kiểm tra đối tượng khi truyền vào để tránh bị crash ứng dụng:Code ví dụ trong Objective C như:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SwiftAggregation_ClassA { | |
weak var classB:SwiftAggregation_ClassB? | |
init() { | |
} | |
init(refClass: SwiftAggregation_ClassB) { | |
self.classB = refClass | |
} | |
func doAction() -> Bool { | |
print("Do action A") | |
if ((classB) != nil) { | |
classB?.doAction() | |
return true | |
} | |
return false | |
} | |
} | |
class SwiftAggregation_ClassB { | |
func doAction() { | |
print("Do action B") | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func testAggregation1() { | |
//GIVEN | |
var objB:SwiftAggregation_ClassB! = SwiftAggregation_ClassB() | |
let objA:SwiftAggregation_ClassA = SwiftAggregation_ClassA(refClass: objB) | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertTrue(result) | |
} | |
func testAggregation2() { | |
//GIVEN | |
var objB:SwiftAggregation_ClassB! = SwiftAggregation_ClassB() | |
let objA:SwiftAggregation_ClassA = SwiftAggregation_ClassA(refClass: objB) | |
objB = nil | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertFalse(result) | |
} | |
func testAggregation3() { | |
//GIVEN | |
var objB:SwiftAggregation_ClassB! = SwiftAggregation_ClassB() | |
let objA:SwiftAggregation_ClassA = SwiftAggregation_ClassA() | |
objA.classB = objB | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertTrue(result) | |
} | |
func testAggregation4() { | |
//GIVEN | |
var objB:SwiftAggregation_ClassB! = SwiftAggregation_ClassB() | |
let objA:SwiftAggregation_ClassA = SwiftAggregation_ClassA() | |
objA.classB = objB | |
objB = nil | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertFalse(result) | |
} |
Composition
Composition giống như Aggregation nhưng giữ đối tượng theo kiểu strong, thì sẽ không phụ thuộc vào đối tượng truyền vào.
Giống code ở trên nhưng ta thay weak thành strong thì sẽ thể hiện mối quan hệ này, ví dụ như sau:
Cũng viết UnitTest như trên nhưng kết quả khi huỷ object tham chiếu thì đối tượng đó vẫn được giữ lại để thực hiện phương thức:
Code ví dụ trong Swift như sau:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SwiftComposition_ClassA { | |
var classB:SwiftComposition_ClassB? //Default: strong reference | |
init() { | |
} | |
init(refClass: SwiftComposition_ClassB) { | |
self.classB = refClass | |
} | |
func doAction() -> Bool { | |
print("Do action A") | |
if ((classB) != nil) { | |
classB?.doAction() | |
return true | |
} | |
return false | |
} | |
} | |
class SwiftComposition_ClassB { | |
func doAction() { | |
print("Do action B") | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func testComposition1() { | |
//GIVEN | |
var objB:SwiftComposition_ClassB! = SwiftComposition_ClassB() | |
let objA:SwiftComposition_ClassA = SwiftComposition_ClassA(refClass: objB) | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertTrue(result) | |
} | |
func testComposition2() { | |
//GIVEN | |
var objB:SwiftComposition_ClassB! = SwiftComposition_ClassB() | |
let objA:SwiftComposition_ClassA = SwiftComposition_ClassA(refClass: objB) | |
objB = nil | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertTrue(result) | |
} | |
func testComposition3() { | |
//GIVEN | |
var objB:SwiftComposition_ClassB! = SwiftComposition_ClassB() | |
let objA:SwiftComposition_ClassA = SwiftComposition_ClassA() | |
objA.classB = objB | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertTrue(result) | |
} | |
func testComposition4() { | |
//GIVEN | |
var objB:SwiftComposition_ClassB! = SwiftComposition_ClassB() | |
let objA:SwiftComposition_ClassA = SwiftComposition_ClassA() | |
objA.classB = objB | |
objB = nil | |
//WHEN | |
let result:Bool = objA.doAction() | |
//THEN | |
XCTAssertTrue(result) | |
} |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.