第六周项目一

来源:互联网 发布:亳州安广网络客服电话 编辑:程序博客网 时间:2024/05/16 05:15

/*
* 程序的版权和版本声明部分
* 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(){return x;}};int main(){  const C c(5);  cout<<c.getX();  return 0;}


 

 更改后:

#include<iostream>#include<stdlib.h>using namespace std;class C{private:  int x; public:  C(int x){this->x = x;}  int getX(){return x;}};int main(){  C c(5);  cout<<c.getX()<<endl;  return 0;}心得体会:去掉main函数中的const

运行结果:

原创粉丝点击