Sơ đồ lớp: Ví dụ đơn giản như một hệ thống con trong máy tính gồm có những đối tượng riêng rẽ như: CPU, Memory, HardDrive, ... Những đối tượng này hoạt động độc lập và có chức năng riêng. Làm thế nào để máy tính hoạt động dựa trên những đối tượng đó? Chúng ta phải tạo đối tượng ComputerFacade để quản lý và giúp người dùng thao tác trên hệ thống máy tính như sơ đồ sau:
Cách sử dụng: Người dùng chỉ quan tâm đến đối tượng computer thể thực hiện tác vụ khởi động.
Code ví dụ theo sơ đồ trên trong objective C:
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 "CPU.h" | |
#import "Memory.h" | |
#import "HardDrive.h" | |
@interface ComputerFacade : NSObject { | |
} | |
@property (nonatomic, strong) CPU* processor; | |
@property (nonatomic, strong) Memory* ram; | |
@property (nonatomic, strong) HardDrive* hd; | |
- (void)start; | |
@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 "ComputerFacade.h" | |
static long const BOOT_ADDRESS = 10230; | |
static NSString* const BOOT_DATA = @"Boot"; | |
@implementation ComputerFacade | |
@synthesize processor, ram, hd; | |
- (instancetype)init { | |
self = [super init]; | |
if (self) { | |
processor = [[CPU alloc] init]; | |
ram = [[Memory alloc] init]; | |
hd = [[HardDrive alloc] init]; | |
} | |
return self; | |
} | |
- (void)start { | |
[processor freeze]; | |
NSData* data = [hd read:BOOT_DATA]; | |
BOOL isLoad = [ram load:BOOT_ADDRESS data:data]; | |
if (isLoad) { | |
[processor jump:BOOT_ADDRESS]; | |
[processor excute]; | |
} else { | |
NSLog(@"Notify alert"); | |
} | |
} | |
@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
@interface CPU : NSObject | |
- (void)freeze; | |
- (void)jump:(long)position; | |
- (void)excute; | |
@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 "CPU.h" | |
@implementation CPU | |
- (void)freeze { | |
NSLog(@"Freeze cpu"); | |
} | |
- (void)jump:(long)position { | |
NSLog(@"Jump to %ld position",position); | |
} | |
- (void)excute { | |
NSLog(@"Excute cpu"); | |
} | |
@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
@interface HardDrive : NSObject | |
- (NSData*)read:(NSString*)dataString; | |
@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 "HardDrive.h" | |
@implementation HardDrive | |
- (NSData*)read:(NSString*)dataString { | |
if (![dataString length]) { | |
return nil; | |
} | |
const char *utfData = [dataString UTF8String]; | |
return [NSData dataWithBytes:utfData length:strlen(utfData)+1]; | |
} | |
@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
@interface Memory : NSObject | |
- (BOOL)load:(long)position data:(NSData*)data; | |
@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 "Memory.h" | |
@implementation Memory | |
- (BOOL)load:(long)position data:(NSData*)data { | |
if (!data) { | |
return NO; | |
} | |
NSLog(@"Load data at %ld successful!",position); | |
return YES; | |
} | |
@end |
good post
ReplyDelete