/*
* 程序的版权和版本声明部分
* Copyright (c)2013, 烟台大学计算机学院学生
* All rightsreserved.
* 文件名称: c.cpp
* 作者:王俊
* 完成日期: 2013年 4 月4日
* 版本号: v1.0
* 输入描述:
* 问题描述:
* 程序输出:
*/
#include<iostream>
#include<stdlib.h>
using namespace std;
class C
{private:
int x;
public:
C(int x){this->x = x;}
int getX()const {return x;}
};
int main()
{ const C c(5);
cout<<c.getX()<<endl;
return 0;
}
-
运行结果:
心得体会:将所定义的函数也进行const处理。相比于上种方法我更倾向于这种