//
// main.m
// _@property_and_@synthesize
//
// Created by zhaogang on 16/4/28.
// Copyright © 2016年 zhaogang. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Person.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
Person *p = [Person new];
p.age = 10;
int a = p.age;
}
return 0;
}
person.h
//
// Person.h
// _@property_and_@synthesize
//
// Created by zhaogang on 16/4/28.
// Copyright © 2016年 zhaogang. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Person : NSObject
{
//int _age;
//int _height;
}
// 可以自动生成某个成员变量的setter和getter声明
// 默认情况下实现的方法中回去访问下划线 _ 开头的成员变量
// 如果手动实现了某个方法,则不声明和实现手动实现的那个方法,而声明和实现没有的那个方法和不存在的成员变量
// 如果两个方法都手动实现了,而成员变量并没有声明,则也不自动生成不存在的自动变量
@property int age;
//- (void)setAge : (int)age;
//- (int)age;
@property int height;
//- (void)setHeight : (int)height;
//- (int)height;
@end
person.m
//
// Person.m
// _@property_and_@synthesize
//
// Created by zhaogang on 16/4/28.
// Copyright © 2016年 zhaogang. All rights reserved.
//
#import "Person.h"
@implementation Person
// @synthesize自动生成age的setter和getter实现,并且会访问_age这个成员变量
// 如果访问的成员变量不存在,则会自动生成@private类型的成员变量
// @synthesize都不要,现在这个版本的@property已经做好了
// @synthesize后面如果没有等于,则创建的就是和前面一摸一样的成员变量名
// @synthesize以后可以不用写了
// @synthesize要写在@implementation中间
// 如果手动实现了setter或者getter方法,则就不实现。
//@synthesize age = _age;
//@synthesize height = _height;
//- (void)setAge:(int)age
//{
// _age = age;
//}
//
//- (int)age
//{
// return _age;
//}
@end