oc_study16 @property和@synthesize

来源:互联网 发布:网络报价单 编辑:程序博客网 时间:2024/05/16 03:48
//内容: @property与@synthesize property//时间: 2015.3.12//作者:sekey#import <Foundation/Foundation.h>@interface Person : NSObject{    int _age;    int _weight;}@property int age;@property int weight;@end@implementation Person@synthesize age = _age;@synthesize weight = _weight;@endint main(void){    Person * p = [Person new];    p.age = 15;    p.weight = 10;    NSLog(@"age = %i, weight = %i", p.age, p.weight);    return 0;}

0 0
原创粉丝点击