本文主要是介绍项目一(改错),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*
*程序的版权和版本声明部分
* Copyright (c)2013, 烟台大学计算机学院学
* All rightsreserved.
* 文件名称:C .cpp
* 作 者: 田凤
*完成日期:2013年4月5日
* 版本号: 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()
{
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()
{
const C c(5);
cout << c.getX();
return 0;
}
*运行结果:
*心得体会:我觉得代码一好,可以改变x的值,代码二const指定对象为常对象,不可改变值。
这篇关于项目一(改错)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!