| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 522 人关注过本帖
标题:c++指针问题
只看楼主 加入收藏
ackie
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-9-18
收藏
 问题点数:0 回复次数:4 
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
aipb2007
Rank: 8Rank: 8
来 自:CQU
等 级:贵宾
威 望:40
帖 子:2879
专家分:7
注 册:2007-3-18
收藏
得分:0 
const TYPE *p
TYPE const *p
指针p指向一个常量

TYPE *const p
常量指针

const TYPE *const p
指向常量的常量指针

Fight  to win  or  die...
2007-09-20 16:08
ackie
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-9-18
收藏
得分:0 
const functiontwo前面的*是什么意思??
2007-09-20 19:03
aipb2007
Rank: 8Rank: 8
来 自:CQU
等 级:贵宾
威 望:40
帖 子:2879
专家分:7
注 册:2007-3-18
收藏
得分:0 
const simplecat * const

看做一个整体,是返回值,类型去查看2楼

Fight  to win  or  die...
2007-09-20 21:55
jonc
Rank: 1
等 级:新手上路
帖 子:69
专家分:0
注 册:2007-3-25
收藏
得分:0 

const simplecat * const functiontwo(const simplecat *const thecat);
中第一个const表示常量数据
第二个const表示常量函数指针
第三个const表示常量数据
第四个表示常量指针


菜鸟也想高飞
2007-11-02 17:17
快速回复:c++指针问题
数据加载中...
 
   



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

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