- 1、本文档共4页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
07.new和delete的例题
*****************************************************************
# include iostream.h //创建和删除堆对象
class Location
{ public :
Location ( int xx , int yy )
{ X=xx; Y=yy; cout “Constructor called:” X “,” Y endl ; } ;
Location ( )
{ cout “Constructor called.” endl ; } ;
~Location ( )
{ cout “Destructor called.” endl ; } ;
private :
int X, Y ;
} ;
void main ( )
{ cout “Step One:” endl ;
Location *ptr1;
ptr1=new Location; // 声明对象指针,并用创建的堆对象地址初始化
delete ptr1 ;
cout “Step Two:” endl ;
ptr1 = new Location ( 1, 2 ) ; // 对象指针指向一个新创建的堆对象
delete ptr1 ;
}
*****************************************************************
//创建和删除堆对象数组
# include iostream . h
class Location
{ public :
set ( int xx , int yy ) ;
~Location ( )
{ cout “Destructor called:” X “,” Y endl ; } ;
private :
int X , Y ;
} ;
Location :: set ( int xx , int yy )
{ X=xx; Y=yy; cout “Constructor:” X “,” Y endl ; return 0 ; } ;
void main ( )
{ Location * ptr;
ptr= new Location [ 2 ] ; // 堆对象数组初始化指针
ptr [ 0 ] . set ( 5 , 10 ) ; // 调用成员函数
ptr [ 1 ] . set ( 15 , 20 ) ;
cout “Deleting ...” endl ;
delete [ ] ptr ;
}
*****************************************************************
class Location {
public :
Location ( int xx = 0 , int yy = 0 ) { X = xx ; Y = yy ; }
Location ( Location p ) ;
int GetX ( ) { return X ; }
int GetY ( ) { return Y ; }
private : int X , Y ;
};
Location :: Location ( Location p)
{ X=p.X; Y=p.Y; cout “Copy_constructor called.” endl ; }
main ( ) {
Location A ( 1 , 2 ) ;
Location B ( A ) ; // 拷贝构造函数被调用
cout “B:” B.GetX ( ) “,” B.GetY ( ) endl ;
}
*****************************************************************
class Location {
public :
Location ( int xx = 0 , int yy = 0 ) { X = xx ; Y = yy ; }
int GetX ( ) { return X ; }
int GetY ( ) { return Y ; }
private : int X , Y ;
};
main ( )
{
Loca
您可能关注的文档
最近下载
- Blender软件二次开发:Blender二次开发综合案例分析.pdf VIP
- 国标图集05J909《工程做法》—标准图集.pdf
- Blender软件二次开发:Blender游戏引擎与交互式内容开发.pdf VIP
- 孔子诞辰日致辞稿(共7篇) .doc
- 第一单元第四课《上学路上》课件 湘美版(2024)一年级上册.pptx
- 浙教版信息科技五上 第4课 算法中的数据 课件.pptx
- 经济全球化对国家经济安全的影响研究.pptx
- 聊城大学音乐学院中国音乐史课件 西周春秋战国音乐.ppt
- Blender软件二次开发:BlenderPython脚本优化与调试.pdf VIP
- 第二课 美的本质和特征课件 --中职技校《美育》第四版.pptx
文档评论(0)