@interface ViewController : UIViewController
{
// 不使用 @synthesize 只在这里写表示这个属性是私有属性
// 不断给它赋值时不会改变引用计数
NSString *str_;
NSString *str;
}
// 不使用 @synthesize 只在这里写表示这个属性是公有属性
// 不断给它赋值时会根据 retain assign copy 改变引用计数
@property(nonatomic,retain)NSString *str;
// 两个一起写名字相同需要使用 @synthesize str = _str; 合成
// 私有属性赋值:str_ = nil;
// 公有属性赋值:self.str = nil; 或 _str = nil; 如果合成了可以直接 str = nil;(不过 retain assign copy 会无效)
// 属性名加前_表示公有属性,在 @property 声明时系统会自己加
// 属性名加后_表示私有属性,这只是为了好看区分可以随意
// 现在开启 Xcode 5.0 以上都开启了 ARC 用什么类型的属性就在哪声明就好了 不用在意内存释放
@end
@implementation ViewController
@synthesize str = _str;
@end
这个说的挺明白的,对应java应该好理解一点,写一下伪代码:
public class ViewController{
private String str_;
private String str;
public String getStr(){
str = str_;
return str;
}
public void setStr(String str){
str_ = str
}
}
小弟的一点拙见,如果有不对的,还望各位大神指出!