iOS重寫父類中的方法時要先調用父類中的方法的原因

來源:互聯網
上載者:User

現有兩個類:

1.Object001繼承自NSObject

#import <Foundation/Foundation.h>
 
@interface Object001 : NSObject
 
//Object001的標頭檔,我只是在這裡面聲明了個方法
-(void)printfString;
 
@end
 
#import "Object001.h"
 
@implementation Object001
 
//Object001的實現檔案,我實現了聲明的printfString方法,這個方法的作用是在控制台上列印Object001字串
-(void)printfString
{
    NSLog(@"Object001");
}
 
@end
2.Object002繼承自Object001


#import "Object001.h"
 
@interface Object002 : Object001
//無修改
@end
 
#import "Object002.h"
 
@implementation Object002
 
-(void)printfString
{
//    [super printfString];  Object002的對象先不調用Object002父類中的方法
 
    NSLog(@"Object002");
}
 
@end

#import "ViewController.h"
#import "Object002.h"
 
@implementation ViewController
//ViewController 實現
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
 
    Object002 *object002 = [Object002 new];
    [object002 printfString];
}


控制台列印如下資訊:


然後在Object002類中調用父類中的方法再運行一次,控制台列印如下資訊:


對比一下就可以知道:在子類中重寫父類中的方法,如果不調用父類中的方法,那麼就不執行父類中的方法,就像重新寫了個名字一樣的方法把父類中的方法覆蓋掉了一樣。
舉個例子:在下面兩個非常常用的方法中,如果不用父類指標調用父類中的方法也能運行成功,只是這個對象少了一些行為而已,所以當重寫父類中的方法時一定要先用父類指標(super)調用一下父類中的方法。


- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}
 
-(void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.