NSCopy与NSMutableCopy技术点

内存管理
NSString的copy实例
对象的copy实例
一、概念
目的:在改变原有对象的时候,不会改变新对象的值
Copy:实现NSCopying协议,创建的是一个不可变副本
MutableCopy:实现NSMutableCopying协议,创建的是一个可变副本
二、内
深拷贝:产生新的对象,所以源对象计数器不变>>>对象拷贝
浅拷贝:不产生新对象,所以源对象计数器加一>>>指针拷贝
三、NSString的copy实例

#import <Foundation/Foundation.h>
void test1()
{
NSString *str = [NSString stringWithFormat:@"age is %i", 10];
NSString *str1 = [str copy];
NSLog(@"%i", str == str1);
NSString *str2 = [str mutableCopy];
NSLog(@"%i", str2 == str);
}
void test2()
{
NSMutableString *str = [NSMutableString stringWithFormat:@"age is %i", 11];
NSString *str1 = [str copy];
NSMutableString *str2 = [str mutableCopy];
[str appendFormat:@"1"];
NSLog(@"%i", str == str2);
NSLog(@"%i", str == str1);
NSLog(@"%@", str);
NSLog(@"%@", str1);
}
int main(int argc, const char * argv[])
{
@autoreleasepool {   
  test2();
}
return 0;
}

四、对象拷贝的实例
对象的拷贝,主要注意点

1.必须实现NSCopying协议
2.需要重写- (id)copyWithZone:(NSZone *)zone方法

GoodStudent.h

#import "Student.h"
@interface GoodStudent : Student
@property (nonatomic, assign) int age;
+(id)goodStudentWithName:(NSString *)name withAge:(int)age;
@end
GoodStudent.m

#import "GoodStudent.h"
@implementation GoodStudent
+(id)goodStudentWithName:(NSString *)name withAge:(int)age
{
  GoodStudent *stu = [super studentWithName:name];
  stu.age = age;
  return stu;
}
-(id)copyWithZone:(NSZone *)zone
{
  GoodStudent *copy = [super copyWithZone:zone];
  copy.age = self.age;
  return copy;
}
-(NSString *)description
{
  return [NSString stringWithFormat:@"%@-%i", self.name, self.age];
}
@end

Student.h

#import <Foundation/Foundation.h>
@interface Student : NSObject <NSCopying>
@property (nonatomic, copy) NSString *name;
+(id)studentWithName:(NSString*)name;
@end
Student.m

#import "Student.h"

@implementation Student
+(id)studentWithName:(NSString *)name
{
  Student *stu = [[[[self class] alloc] init] autorelease];
  stu.name = name;

  return stu;
}

- (id)copyWithZone:(NSZone *)zone
{
  Student *copy = [[self class] allocWithZone:zone];

  copy.name = self.name;

  return copy;
}

-(NSString *)description
{
  return [NSString stringWithFormat:@"%@", self.name];
}

-(void)dealloc
{
  [_name release];
  [super dealloc];
}
@end

main.m

#import <Foundation/Foundation.h>
#import "GoodStudent.h"

void test1()
{
  Student *stu = [Student studentWithName:@"name1"];
  Student *stu1 = [stu copy];

  NSLog(@"%@", stu);
  NSLog(@"%@", stu1);
}

void test2()
{
  GoodStudent *stu1 = [GoodStudent goodStudentWithName:@"name1" withAge:10];

  GoodStudent *stu2 = [stu1 copy];

  NSLog(@"%@", stu1);
  NSLog(@"%@", stu2);

}

int main(int argc, const char * argv[])
{

  @autoreleasepool {

    test2();

  }
  return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

图解AI

你的鼓励是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值