OC一般类(简单类,组合类,继承关系的子类)的拷贝

2024-08-28 16:38

本文主要是介绍OC一般类(简单类,组合类,继承关系的子类)的拷贝,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  1、对于简单的类而言,如果想要实现拷贝操作,就需要先将这个类遵守NSCopying协议,然后在它的实现文件即.m文件中实现-(id)copyWithZone:(NSZone *)zone方法,在方法内以allocWithZone的方式分配内存,若本类实现有初始化成员方法则直接调用初始化方法并用自身成员变量作为实参对其相应的形参进行赋值 ,然后生成新的对象指针,把新的对象指针返回即可;若本身没有实现初始化成员的方法则直接调用init方法生成对象指针,然后用新的对象指针调用本类中成员的set方法并用相应的自身成员对其赋值(即“新的对象指针.成员名=成员名”),如果没有为有的成员设置set方法,就要用移动指针(—>)的方式为其赋值 即(新的对象指针->成员名=成员名)的格式为其赋值,最后返回新的成员指针即可。

2、对于组合类而言,一定要先让成员对象所属的类(被包含类)遵守NSCopying协议并实现copyWIthZone方法,然后再让自身类(包含类)遵守NSCopying协议并实现copyWithZone方法即可。在方法内调用方法上同只不过在赋值的时候多了一层,新的对象指针 .(或->) 成员对象指针.(或->) 成员类的实例变量=XXX(自身的值,调用类似)。

3、对于继承关系中的子类而言,只要它直接继承根类的父类遵守了NSCopying协议,它就也遵守了此协议。然后重写copyWithZone方法即可,详细步骤上同。

注意:(1)根据 谁创建,谁释放的内存管理原则,组合类一定要为包含类重写dealloc方法并在方法内让自己的成员对象调用一次release操作进行释放,最后再调用父类的dealloc方法([super dealloc];)。

(2)如果将同一个类的初始化过的对象二赋给已经初始化的对象一,在拷贝之前要对对象一进行一个release操作,不然会造成对象一原先的内存泄露。即在 对象一=[对象二];之前要加[对象一  release];

代码验证实例如下:

新建XYPoint类

编辑XYPoint.h如下:

//
//  XYPoint.h
//  aa
//
//  Created by apple on 15/8/8.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import <Foundation/Foundation.h>@interface XYPoint : NSObject<NSCopying>
{int x;int y;
}
@property int  x,y;
-(id)initWithX:(int) xVal andY:(int) yVal;
-(void)print;
@end
编辑XYPoint.m如下:

//
//  XYPoint.m
//  aa
//
//  Created by apple on 15/8/8.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import "XYPoint.h"@implementation XYPoint
@synthesize x,y;
-(id)initWithX:(int) xVal andY:(int) yVal
{if (self=[super init]) {x = xVal;y = yVal;}return  self;
}
-(id)copyWithZone:(NSZone *)zone
{XYPoint *newPoint=[[XYPoint allocWithZone:zone] initWithX:x andY:y];return  newPoint;
}
-(void)print{NSLog(@"x=%d  y=%d",x,y);
}
@end
新建组合类Circle

编辑Circl.h如下:

//
//  Circle.h
//  aa
//
//  Created by apple on 15/8/8.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import <Foundation/Foundation.h>
#import "XYPoint.h"
@interface Circle : NSObject<NSCopying>
{int radius;XYPoint *origin;// 定义类XYpoint的对象,作为类Circle的实例变量
}
@property int radius;
@property (nonatomic,retain) XYPoint *origin;
-(id)initWithRadius:(int)_r  andOrigin:(XYPoint *) _origin;
-(id) initWithX:(int)_x andY:(int) _y andRadius:(int) _r;
-(int) area; //计算面积方法
-(int) perimeter; //计算周长方法
-(void)print;
@end
编辑Circle.m如下:

//
//  Circle.m
//  aa
//
//  Created by apple on 15/8/8.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import "Circle.h"
@implementation Circle
@synthesize radius,origin;
-(id)initWithRadius:(int)_r  andOrigin:(XYPoint *) _origin
{if (self=[super init]) {self.origin=_origin;radius=_r;}return self;
}
-(id) initWithX:(int)_x andY:(int) _y andRadius:(int) _r
{if (self=[super init]) {self.radius=_r;XYPoint *_origin=[[[XYPoint alloc] initWithX:_x andY:_y] autorelease];self.origin=_origin;}return self;
}
-(int)area
{return radius*radius*3.14;
}
-(int)perimeter
{return radius*3.14*2;
}
-(void)print{[origin print];NSLog(@"radius=%d area=%d perimeter=%d",radius,self.area,self.perimeter);
}
-(id)copyWithZone:(NSZone *)zone
{Circle *newCircle=[[Circle allocWithZone:zone] init];newCircle->radius=radius;newCircle->origin=[origin copy];return newCircle;
}
-(void)dealloc
{[origin release];[super dealloc];
}
@end
新建Circle类的子类Cylinder

编辑Cylinder.h如下:

//
//  Cylinder.h
//  aa
//
//  Created by apple on 15/8/20.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import "Circle.h"
#import "Circle.h"
@interface Cylinder : Circle
@property int height;
-(id)initWithX:(int)_x andY:(int)_y andRadius:(int)_r andHeight:(int) _h;
-(void) print;
@end
编辑Cylinder.m如下:

//
//  Cylinder.m
//  aa
//
//  Created by apple on 15/8/20.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import "Cylinder.h"
@implementation Cylinder
-(id)initWithX:(int)_x andY:(int)_y andRadius:(int)_r andHeight:(int) _h
{if (self=[super initWithX:_x andY:_y andRadius:_r]) {_height=_h;}return self;
}
-(void) print
{NSLog(@"height= %d",self.height);[super print];NSLog(@"volume= %d",self.area*_height);
}
-(id)copyWithZone:(NSZone *)zone
{Cylinder *newCy=[[Cylinder allocWithZone:zone] initWithX:origin.x andY:origin.y andRadius:radius andHeight:_height];return newCy;
}
@end
在main.m中调用如下:

//
//  main.m
//  aa
//
//  Created by apple on 15/8/8.
//  Copyright (c) 2015年 liu. All rights reserved.
//#import <Foundation/Foundation.h>
#import "Cylinder.h"
void Test1()
{//验证单个类XYPoint类的复制操作NSLog(@"简单类的拷贝过程如下:");XYPoint * p=[[XYPoint alloc] initWithX:1 andY:2];XYPoint *p1=[[XYPoint alloc] initWithX:3 andY:4];[p print];[p1 print];[p release];p=[p1 copy];[p print];[p1 print];[p release];[p1 release];NSLog(@"---------------------------------");
}
void Test2()
{ //验证组合类Circle类的复制操作NSLog(@"组合类的拷贝过程如下:");XYPoint *pp1 = [[[XYPoint alloc] initWithX:5 andY:6] autorelease];Circle *c1= [[Circle alloc] initWithRadius:7 andOrigin:pp1] ;XYPoint *pp2 = [[[XYPoint alloc] initWithX:8 andY:9] autorelease];Circle *c2 = [[[Circle alloc] initWithRadius:10 andOrigin:pp2] autorelease];[c1 print];[c2 print];[c1 release];c1=[c2 copy];[c1 print];[c2 print];[c1 release];NSLog(@"---------------------------------");
}
void Test3()
{NSLog(@"继承中子类的拷贝过程如下:");Cylinder *cy1=[[Cylinder alloc] initWithX:7 andY:8 andRadius:9 andHeight:10] ;Cylinder *cy2=[[[Cylinder alloc] initWithX:11 andY:12 andRadius:13 andHeight:14] autorelease];[cy1 print];[cy2 print];[cy1 release];cy1=[cy2 copy];[cy1 print];[cy2 print];[cy1 release];NSLog(@"---------------------------------");
}
int main(int argc, const char * argv[])
{@autoreleasepool {Test1();Test2();Test3();}return 0;
}

运行结果如下:








这篇关于OC一般类(简单类,组合类,继承关系的子类)的拷贝的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1115312

相关文章

利用Python编写一个简单的聊天机器人

《利用Python编写一个简单的聊天机器人》这篇文章主要为大家详细介绍了如何利用Python编写一个简单的聊天机器人,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 使用 python 编写一个简单的聊天机器人可以从最基础的逻辑开始,然后逐步加入更复杂的功能。这里我们将先实现一个简单的

使用IntelliJ IDEA创建简单的Java Web项目完整步骤

《使用IntelliJIDEA创建简单的JavaWeb项目完整步骤》:本文主要介绍如何使用IntelliJIDEA创建一个简单的JavaWeb项目,实现登录、注册和查看用户列表功能,使用Se... 目录前置准备项目功能实现步骤1. 创建项目2. 配置 Tomcat3. 项目文件结构4. 创建数据库和表5.

使用PyQt5编写一个简单的取色器

《使用PyQt5编写一个简单的取色器》:本文主要介绍PyQt5搭建的一个取色器,一共写了两款应用,一款使用快捷键捕获鼠标附近图像的RGB和16进制颜色编码,一款跟随鼠标刷新图像的RGB和16... 目录取色器1取色器2PyQt5搭建的一个取色器,一共写了两款应用,一款使用快捷键捕获鼠标附近图像的RGB和16

四种简单方法 轻松进入电脑主板 BIOS 或 UEFI 固件设置

《四种简单方法轻松进入电脑主板BIOS或UEFI固件设置》设置BIOS/UEFI是计算机维护和管理中的一项重要任务,它允许用户配置计算机的启动选项、硬件设置和其他关键参数,该怎么进入呢?下面... 随着计算机技术的发展,大多数主流 PC 和笔记本已经从传统 BIOS 转向了 UEFI 固件。很多时候,我们也

基于Qt开发一个简单的OFD阅读器

《基于Qt开发一个简单的OFD阅读器》这篇文章主要为大家详细介绍了如何使用Qt框架开发一个功能强大且性能优异的OFD阅读器,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 目录摘要引言一、OFD文件格式解析二、文档结构解析三、页面渲染四、用户交互五、性能优化六、示例代码七、未来发展方向八、结论摘要

Java中ArrayList的8种浅拷贝方式示例代码

《Java中ArrayList的8种浅拷贝方式示例代码》:本文主要介绍Java中ArrayList的8种浅拷贝方式的相关资料,讲解了Java中ArrayList的浅拷贝概念,并详细分享了八种实现浅... 目录引言什么是浅拷贝?ArrayList 浅拷贝的重要性方法一:使用构造函数方法二:使用 addAll(

MyBatis框架实现一个简单的数据查询操作

《MyBatis框架实现一个简单的数据查询操作》本文介绍了MyBatis框架下进行数据查询操作的详细步骤,括创建实体类、编写SQL标签、配置Mapper、开启驼峰命名映射以及执行SQL语句等,感兴趣的... 基于在前面几章我们已经学习了对MyBATis进行环境配置,并利用SqlSessionFactory核

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

hdu4869(逆元+求组合数)

//输入n,m,n表示翻牌的次数,m表示牌的数目,求经过n次操作后共有几种状态#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#includ