Objective-C 快速導覽 - 物件屬性

當屬性 (property) 是物件 (object) 的時候,屬性就得設定為指標 (pointer) ,同時需要宣告為 assign 、 retain 、 copy ,以便進行記憶體管理。



若是用自動引用計數 (automatic reference counting, ARC) ,須改用 strong 、 weak 宣告。


舉例如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#import <Foundation/Foundation.h>
 
@interface Demo: NSObject
{
    NSString *a;
}
 
@property (assign) NSString *a;
 
- (id) initProperty;
 
@end
 
@implementation Demo
 
@synthesize a;
 
- (id) initProperty
{
    self = [super init];
    if (self) {
        a = @"There is no spoon.";
    }
  
    return self;
}
 
@end
 
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  
    Demo *demo = [[Demo alloc] initProperty];
    NSLog(demo.a);
  
    [pool drain];
    return 0;
}
 
/* 《程式語言教學誌》的範例程式
   檔名:classdemo17.m
   功能:Objective-c 程式範例
   作者:張凱慶
   時間:西元 2013 年 4 月 */


編譯執行,結果如下



中英文術語對照
屬性property
物件object
指標pointer
自動引用計數automatic reference counting, ARC


您可以繼續參考
類別


相關目錄
Objective-C 快速導覽
Objective-C 教材
首頁



參考資料
Programming with Objective-C: About Objective-C
Programming with Objective-C: Working with Objects

沒有留言: