ios的@property屬性和@synthesize屬性

來源:互聯網
上載者:User
當你定義了一系列的變數時,需要寫很多的getter和setter方法,而且它們的形式都是差不多的,,所以Xcode提供了@property和@synthesize屬性,@property用在 .h 標頭檔中用作聲明,@synthesize用在.m 檔案中用於實現。

       如下,建立一個基於“Command Line Tool”的項目,名為“property”,再建立一個Student類,傳統的寫法是:

Student.h

複製代碼
//  Student.h
//  property
//
//  Created by Rio.King on 13-8-25.
//  Copyright (c) 2013年 Rio.King. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface Student : NSObject
{
    int age;
    int no;
}

//age的getter和setter方法聲明
- (int)age;
- (void)setAge:(int)newAge;

//no的getter和setter方法聲明
- (int)no;
- (void)setNo:(int)newNo;

@end
複製代碼
Student.m

複製代碼
//
//  Student.m
//  property
//
//  Created by Rio.King on 13-8-25.
//  Copyright (c) 2013年 Rio.King. All rights reserved.
//

#import "Student.h"

@implementation Student

//age的getter和setter方法的實現
- (int)age
{
    return age;
}
-(void)setAge:(int)newAge
{
    age = newAge;
}

//no的getter和setter方法的實現
- (int)no
{
    return no;
}
- (void)setNo:(int)newNo
{
    no = newNo;
}

@end
複製代碼
main.m

複製代碼
//
//  main.m
//  property
//
//  Created by Rio.King on 13-8-25.
//  Copyright (c) 2013年 Rio.King. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "Student.h"

int main(int argc, const char * argv[])
{

    @autoreleasepool {
        
        // insert code here...
        Student *stu = [[Student alloc] init];
        stu.age = 100;//這句相當於setter方法
        NSLog(@"age is %i", stu.age);//這裡的 stu.age 相當於getter方法
        
        [stu release];
        
    }
    return 0;
}
複製代碼
 

************************************************************************************

 

用@property和@synthesize的寫法是:
Student.h

複製代碼
//
//  Student.h
//  property
//
//  Created by Rio.King on 13-8-25.
//  Copyright (c) 2013年 Rio.King. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface Student : NSObject
{
    int age;
    int no;
}

//當編譯器遇到@property時,會自動延伸成getter和setter的聲明
@property int age;
@property int no;


@end
複製代碼
Student.m

複製代碼
//
//  Student.m
//  property
//
//  Created by Rio.King on 13-8-25.
//  Copyright (c) 2013年 Rio.King. All rights reserved.
//

#import "Student.h"

@implementation Student

//@synthesize 會自動產生getter和setter的實現
//@synthesize 預設會去訪問age,no,height同名的變數,,
//如果找不到同名的變數,會在內部自動產生一個私人同名變數age,no,height,,
//因此Student.h 中的這幾個變數也可以省略不寫。
@synthesize age,no;

@end
複製代碼
main.m

複製代碼
//
//  main.m
//  property
//
//  Created by Rio.King on 13-8-25.
//  Copyright (c) 2013年 Rio.King. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "Student.h"

int main(int argc, const char * argv[])
{
    
    @autoreleasepool {
        
        // insert code here...
        Student *stu = [[Student alloc] init];
        stu.age = 100;
        NSLog(@"age is %i", stu.age);
        
        [stu release];
    }
    return 0;
}
複製代碼
幾點說明:
1.在Xcode4.5及以後的版本中,可以省略@synthesize ,編譯器會自動幫你加上getter 和 setter 方法的實現,並且預設會去訪問_age這個成員變數,如果找不到_age這個成員變數,會自動產生一個叫做 _age的私人成員變數。

2.視頻教學中建議變數名用"_"首碼作為開頭,但我看big Nerd 那本書裡是不用的,個人也比較習慣 big Nerd 的那種寫法,所以變數名就不加首碼了。

 

文法簡介:
格式: 聲明property的文法為:@property (參數1,參數2) 類型 名字; 如:
C代碼
@property(nonatomic,retain) UIWindow *window;
其中參數主要分為三類:
讀寫屬性: (readwrite/readonly)
setter語意:(assign/retain/copy)
原子性: (atomicity/nonatomic)

各參數意義如下:
readwrite: 產生setter\getter方法
readonly: 只產生簡單的getter,沒有setter。
assign: 預設類型,setter方法直接賦值,而不進行retain操作
retain: setter方法對參數進行release舊值,再retain新值。
copy: setter方法進行Copy操作,與retain一樣
nonatomic: 禁止多線程,變數保護,提高效能
相關文章

聯繫我們

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