| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 381 人关注过本帖
标题:[求助]大家看一下
只看楼主 加入收藏
東東
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-2
收藏
 问题点数:0 回复次数:2 
[求助]大家看一下

大家看下,为什么这个程序里,构造函数Cat(const Cat &)里的初使化成员指针变量的时候要先动态开辟一个内存空间,
而成员函数void setage(int age)可要可不要呢?
#include "stdafx.h"
#include<iostream.h>
class Cat
{
public:
Cat();
//常引用,不允许改变引用的值
~Cat();
int getage()const{return *itsage;}
//void setage(int age){*itsage=age;}
void setage(int age);
protected:
int *itsage;
};
Cat::Cat()
{
itsage=new int;
*itsage=5;
}
Cat::Cat(const Cat & c)
{
//itsage=new int;
*itsage=*c.itsage;
//itsage=c.itsage;
cout<<*itsage<<" "<<*c.itsage<<endl;
cout<<itsage<<" "<<c.itsage<<endl;
cout<<&itsage<<" "<<&c.itsage<<endl;
}
void Cat::setage(int age)
{
//itsage=new int ;
*itsage=age;
}
Cat::~Cat()
{
delete itsage;
itsage=0;
}
void main()
{
Cat frisky;
cout<<"frisky's age:"<<frisky.getage()<<endl;
cout<<"setting frisky to 6...\n";
frisky.setage(6);
cout<<"creating boots from frisky\n";
Cat boots(frisky);
cout<<"frisky's age:"<<frisky.getage()<<endl;
cout<<"boots'age:"<<boots.getage()<<endl;
cout<<"setting frisky to 7...\n";
frisky.setage(7);
cout<<"frisky's age:"<<frisky.getage()<<endl;
cout<<"boots'age:"<<boots.getage()<<endl;
}

2007-09-09 19:20
xlh5225
Rank: 2
等 级:论坛游民
威 望:2
帖 子:188
专家分:25
注 册:2007-8-14
收藏
得分:0 
查看关于,深拷贝和浅拷贝的内容,我就不细说了~~~
2007-09-09 21:29
東東
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-2
收藏
得分:0 
我去看了浅拷贝和深拷贝的知识
谢谢了哈
2007-09-11 16:50
快速回复:[求助]大家看一下
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024060 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved