close

@interface Person : NSObject

{

   int old, weight;

}

@property int old, weight;

@end

----------------------------------------

@implement Person

@synthesize old, weight;

@end

----------------------------------------

main program

Person *hfchou = [Person new];

hfchou.old = 25;

hfchou.weight = 61;

or

scanf("%i", &hfchou->old);

or

[hfchou old:25];

[hfchou weight:35];

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 hfchou 的頭像
    hfchou

    小方的盜墓筆記

    hfchou 發表在 痞客邦 留言(0) 人氣()