Generalization:
giống quan hệ kế thừa trong những ngôn ngữ lập trình.Theo sơ đồ trên thì ClassB đang kế thừa ClassA
Code ví dụ 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 <Foundation/Foundation.h> | |
@interface ObjCGeneralization_ClassA : NSObject | |
- (void)doAction; | |
@end | |
@implementation ObjCGeneralization_ClassA | |
- (void)doAction { | |
NSLog(@"Do action A"); | |
} | |
@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 "ObjCGeneralization_ClassA.h" | |
@interface ObjCGeneralization_ClassB : ObjCGeneralization_ClassA | |
@end | |
@implementation ObjCGeneralization_ClassB | |
- (void)doAction { | |
[super doAction]; | |
NSLog(@"Do action B"); | |
} | |
@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
class SwiftGeneralization_ClassA { | |
func doAction() { | |
NSLog("Do action A") | |
} | |
} | |
class SwiftGeneralization_ClassB : SwiftGeneralization_ClassA { | |
override func doAction() { | |
super.doAction() | |
NSLog("Do action B") | |
} | |
} |
Realization:
là quan hệ thực thi 1 interface.Theo sơ đồ trên thì ClassA thực thi những chức năng được định nghĩa sẵn trong InterfaceA.
Code ví dụ 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
@protocol InterfaceA <NSObject> | |
- (void)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 "InterfaceA.h" | |
@interface ObjCRealization_ClassA : NSObject <InterfaceA> | |
@end | |
@implementation ObjCRealization_ClassA | |
- (void)doAction { | |
NSLog(@"Do action"); | |
} | |
@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
protocol InterfaceA { | |
func doActionA() | |
/* As with type property requirements, you always prefix type method requirements with the static keyword when they are defined in a protocol. This is true even though type method requirements are prefixed with the class or static keyword when implemented by a class:*/ | |
static func doActionB() | |
/*If you mark a protocol instance method requirement as mutating, you do not need to write the mutating keyword when writing an implementation of that method for a class. The mutating keyword is only used by structures and enumerations.*/ | |
mutating func doActionC() | |
} | |
class SwiftRealization_ClassA : InterfaceA { | |
func doActionA() { | |
NSLog("Do action A") | |
} | |
static func doActionB() { | |
NSLog("Do action B") | |
} | |
func doActionC() { | |
NSLog("Do action C") | |
} | |
} |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.