Objective-C Posing/冒充
開始之前冒充在Objective-C,必須要說明的是,冒充宣佈棄用在Mac OS X10.5,它此後都不再使用了。因此,對於那些不關心這些過時的方法的同學可以跳過本章。
Objective-C的全取代另一個階級在一個程序中允許類。更換類說「構成」目標類。
對於支持冒充的版本,所有的消息發送到目標類的,而不是收到通過冒充的類。
NSObject 包含 poseAsClass 方法,使我們能夠取代現有的的類,就像上面說。
Restrictions/冒充限制
一個類可能只對作爲其直接或間接的父類之一。
冒充類絕不能定義任何新的實例變量目標類(雖然它可能定義或重寫方法)不存在。
目標類可能沒有收到任何消息之前冒充。
冒充類可以通過super調用覆蓋的方法,從而將的實現目標類。
冒充類可以覆蓋類別中定義的方法。
#import <Foundation/Foundation.h> @interface MyString : NSString @end @implementation MyString - (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target
withString:(NSString *)replacement { NSLog(@"The Target string is %@",target); NSLog(@"The Replacement string is %@",replacement); } @end int main() { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; [MyString poseAsClass:[NSString class]]; NSString *string = @"Test"; [string stringByReplacingOccurrencesOfString:@"a" withString:@"c"]; [pool drain]; return 0; }
現在,當我們在一箇舊的Mac OS X(V_10.5或更早),編譯並運行程序,我們將得到下面的結果。
2013-09-22 21:23:46.829 Posing[372:303] The Target string is a
2013-09-22 21:23:46.830 Posing[372:303] The Replacement string is c
在上面的例子中,我們只是污染了實現我們的原來的方法,這將影響上述方法貫穿於所有的 NSString 操作。