Objective-C中public、protected、private的使用

來源:互聯網
上載者:User

1.@public,@protected,@private

個人覺得@public和@protected並沒有很明確的區別,在他們作用範圍內的對象,如果不將對象設定成@property,則該對象相當於 protected對象,只有子類和本身可以訪問該對象;如果將對象設定成@property,則可以使使用者訪問該對象。@private,顧名思義, 這裡聲明的就是私人對象

註:可以通過指標的方式訪問。

2.static對象(類內)

我們將對象聲明在類中"{"和"}"之外,也就是與方法和@property寫在一起,就可以聲明一個類內部的static對象。

3.static方法

當方法前是使用"+"來修飾並且聲明在標頭檔中,則說明該方法相當於c++中的static方法,通過類直接調用。但是需要注意的是,雖然這樣的方法可以通過類直接調用,但是不可以通過對象調用。

4.public方法

當方法前是使用"-"來修飾並且聲明在標頭檔中,則該方法可以通過類的對象進行調用。

5.private方法

Objective-C中的private方法是通過category實現的,在實現檔案中我們聲明一個類的category,在這裡面的方法就是private方法。類的對象是不可以進行調用的,同樣由於該方法的聲名是在類的實現檔案中,所以子類也是不能重寫該方法的。

下面的代碼是對於public、protected、private的具體實現

標頭檔
#import <Foundation/Foundation.h>

@interface Grammar : NSObject {
 

   @public
        NSString* publicString;  //公有成員
   
    @protected
        NSString* protectedString;  //受保護的成員
   
    @private
        NSString* privateString;  //私人成員
}

NSString* staticString;   //靜態成員      很重要!!!!!

@property (nonatomic, retain) NSString* publicString;  //公有成員

+ (void)staticMethod;  //靜態方法(類方法)
- (void)publicMethod;  //公有方法(對象執行個體方法)

@end//****************************************************

實現檔案
#import "Grammar.h"

#pragma mark -
#pragma mark Grammar(private)
@interface Grammar(private)  //(在@implementation上面)- (void)privateMethod;      //私人方法(對象執行個體方法)
@end#pragma mark -
#pragma mark Grammar

@implementation Grammar

@synthesize publicString;  //公有成員 (在@implementation下面)- (id)init
{
    if((self = [super init]))
    {
        if(publicString == nil)
        {
            publicString = [[NSString alloc] init];
        }
       
        if(protectedString == nil)
        {
            protectedString = [[NSString alloc] init];
        }
       
        if(privateString == nil)
        {
            privateString = [[NSString alloc] init];
        }
       
        if(staticString == nil)
        {
            staticString = [[NSString alloc] init];
        }
    }
   
    return self;
}

- (void)dealloc
{
    [publicString release];
    [protectedString release];
    [privateString release];
   
    [super dealloc];
}

#pragma mark -
#pragma mark Public Method

+ (void)staticMethod
{
}

- (void)publicMethod
{
}

#pragma mark -
#pragma mark Private Method

- (void)privateMethod
{
}

@end以上是我對Objective-C中public、protected、private的理解,如果有什麼新的理解會進行更新。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.