[cpp]
/*
* 程序的版權和版本聲明部分
* Copyright (c)2013, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: object.cpp
* 作者:楊紹寧
* 完成日期: 2013年 4 月 5 日
* 版本號: v1.0
* 輸入描述:無
* 問題描述:常函數。
* 程序輸出:分數。
*/
(1)
#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();
return 0;
}
(2)
#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;
}
/*
* 程序的版權和版本聲明部分
* Copyright (c)2013, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: object.cpp
* 作者:楊紹寧
* 完成日期: 2013年 4 月 5 日
* 版本號: v1.0
* 輸入描述:無
* 問題描述:常函數。
* 程序輸出:分數。
*/
(1)
#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();
return 0;
}
(2)
#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;
}
結果:
感受:因為get()函數只輸出不修改,怕中間出差,const比較好!!