retain和strong,assign和weak的区别

是这样的,想请分析下,retain和strong,assign和weak的区别
最新回答
虚伪无情

2024-11-26 12:20:38

  strong与weak是由ARC新引入的对象变量属性
  xcode 4.2(ios sdk4.3和以下版本)和之前的版本使用的是retain和assign,是不支持ARC的。xcode 4.3(ios5和以上版本)之后就有了ARC,并且开始使用
  strong与weak

  assign: 用于非指针变量。用于
  基础数据类型 (例如NSInteger)和C数据类型(int, float, double, char, 等),另外还有id
  如:
  @property (nonatomic, assign) int number;
  @property (nonatomic, assign) id className;//id必须用assign
  反正记住:前面不需要加 “*” 的就用assign吧

  retain:用于指针变量。就是说你定义了一个变量,然后这个变量在程序的运行过程中会被更改,并且影响到其他方法。一般是用于字符串( NSString,NSMutableString),数组(NSMutableArray,NSArray),字典对象,视图对象(UIView ),控制器对象(UIViewController)等
  比如:
  @property (nonatomic,retain) NSString * myString;
  @property (nonatomic, retain) UIView * myView;
  @property (nonatomic, retain) UIViewController * myViewController;
  xcode 4.2不支持ARC,所以会频繁使用retain来修饰,用完释放掉,而xcode4.3支持ARC,可以使用retian,不需要手动释放内存,系统会自动为你完成,如果你在xcode4.3上面开发,retian和strong都是一样的,没区别

  strong和weak:
  事实上
  @property(nonatomic,strong) MyClass *myObject;就是相当于@property(nonatomic,retain) MyClass *myObject;@property(nonatomic, weak )id<RNNewsFeedCellDelegate>delegate;就是相当于@property(nonatomic,assign )id<RNNewsFeedCellDelegate>delegate;
  现在系统自动生成的属性都是用weak来修饰的,我想应该是xcode 4.2不支持ARC,所以大家都是用retain。现在xcode4.3支持ARC了,于是苹果建议程序员放弃retain,以后都用weak。
  weak 就是相当于assign,同样可以在xcode4.3开发环境下放弃使用assign 使用weak 来代替

  unsafe_unretained
  unsafe_unretained 就是ios5版本以下的 assign ,也就是 unsafe_unretained , weak, assign 三个都是一个样的。 因为 ios5用的是 weak ,那在ios4.3就用不了,如果你将 weak 修改为 unsafe_unretained ,那就可以用了。说到底就是iOS 5之前的系统用该属性代替 weak 来使用。

  copy:这个东西估计是大部分人最不容易搞明白的东西,我也搞不明白。听别人说这个东西基本不用了,效果其实和retain没什么两样,唯一的区别就是copy只用于NSString而不能用于NSMutableString。
  不过好像当一个类继承NSObject,那么这个类里面的属性需要使用copy,比如:
  #import <Foundation/Foundation.h>
  #import <MapKit/MKAnnotation.h>
  @interface Annotation : NSObject <MKAnnotation> {
  
  CLLocationCoordinate2D coordinate;
  NSString *title;
  NSString *subtitle;
  }
  @property (nonatomic) CLLocationCoordinate2D coordinate;
  @property (nonatomic, copy) NSString *title;
  @property (nonatomic, copy) NSString *subtitle;
  @end
  反正以后就这么用就是了

  反正就记住一点:xcode4.2用retain和assign ;xcode4.3或以上版本用strong与weak 。
他年词笔隐

2024-11-26 11:25:27

retain和strong,assign和weak的区别
这两组词在意思上根本不存在相同或相近意义,也就是说它们在意义上风马牛不相及。
如果说找反义词,那么strong和weak可以算一对反义词。而retain, assign就没有什么关联的地方了。
1. retain: verb, to continue to have that thing(动词)保留;保持;保存
He retains a deep respect for the profession.他对这个职业仍然深怀敬意
The interior of the shop still retains a nineteenth-century atmosphere.这家商店的内部装修仍然保留着19世纪的风格。

Other countries retained their traditional and habitual ways of doing things.其他国家仍然保持着他们做事的传统和习惯。

If left covered in a warm place, this rice will retain its heat for a good hour.如果加盖放在暖和的地方,这些米饭可以保温足足一个小时。

2. strong: adjective, (someone/an animal is) healthy with good muscles and can move or carry heavy things, or do hard physical work(形容词)强壮的;健壮的;力气大的
I'm not strong enough to carry him.我力气不够大,抱不动他。

I feared I wouldn't be able to control such a strong horse.我怕我驾驭不了这么强壮的马。

3. assign: verb, give a piece of work to someone(动词)分派工作;布置作业
Later in the year, she'll assign them research papers.今年晚些时候,她将给他们指定研究论文。
When I taught, I would assign a topic to children which they would write about.我教课时会给孩子们布置一个题目,让他们就这个题目写点东西。
When teachers assign homework, students usually feel an obligation to do it.当老师布置家庭作业的时候,学生们通常觉得做作业是分内之事。

4. weak: adjective, someone is not healthy or does not have good muscles, so that they cannot move quickly or carry heavy things(身体)虚弱的,无力的
His arms and legs were weak.他的四肢虚弱无力。
I was too weak to move or think or speak.我太虚弱了,无法动弹,无法思考,也无法说话。