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

//---------------------------------------------------------------------------
#include<iostream.h>
#include <vcl.h>
#pragma hdrstop

//---------------------------------------------------------------------------

#pragma argsused
class simplecat
{
public:
simplecat();
simplecat(simplecat&);
~simplecat();
int getage() const {return itsage;}
int setage(int age){itsage=age;}
private:
int itsage;
};
simplecat::simplecat()
{
cout<<"simple cat constructor..."<<endl;
itsage=1;
}
simplecat::simplecat(simplecat&)
{
cout<<"simple cat copy constructor..."<<endl;
}
simplecat::~simplecat()
{
cout<<"simple cat destructor..."<<endl;
}
const simplecat * const functiontwo(const simplecat *const thecat);
int main(int argc, char* argv[])
{
cout<<"making a cat..."<<endl;
simplecat frisky;
cout<<"frisky is";
cout<<frisky.getage();
cout<<"years old"<<endl;
int age=5;
frisky.setage(age);
cout<<"frisky is";
cout<<frisky.getage();
cout<<"years old"<<endl;
cout<<"calling functiontwo.... "<<endl;
functiontwo(&frisky);
cout<<"frisky is";
cout<<frisky.getage();
cout<<"years old"<<endl;
char response;
cin>>response;

return 0;
}
const simplecat *const functiontwo(const simplecat *const thecat)
{
cout<<"function two.returning..."<<endl;
cout<<"frisky is now"<<thecat->getage();
cout<<"years old"<<endl;
thecat->setage(8);
return thecat;
}
//---------------------------------------------------------------------------
蓝色那一行代码是什么意思??为什么函数前面要*??
那位高手给解释下,谢谢!!

搜索更多相关主题的帖子: 指针 
2007-09-20 11:56
ackie
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-9-18
收藏
得分:0 
const functiontwo前面的*是什么意思??
2007-09-20 19:03
快速回复:c++指针问题
数据加载中...
 
   



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

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