练习:
搭建一个货币的场景,创建一个名为 RMB 的类,该类具有整型私有成员变量 yuan(元)、jiao(角)和 fen(分),并且具有以下功能:
(1)重载算术运算符 + 和 -,使得可以对两个 RMB 对象进行加法和减法运算,并返回一个新的 RMB 对象作为结果。
(2)重载关系运算符 >,判断一个 RMB 对象是否大于另一个 RMB 对象,并返回 true 或 false。
(3)重载前置减减运算符 --,使得每次调用时 RMB 对象的 yuan、jiao 和 fen 分别减 1
(4)重载后置减减运算符 --,使得每次调用时 RMB 对象的 yuan、jiao 和 fen 分别减 1
(5)另外, RMB 类还包含一个静态整型成员变量 count,用于记录当前已创建的 RMB 对象的数量。每当创建一个新的 RMB 对象时,count 应该自增 1;每当销毁一个 RMB 对象时,count 应该自减 1。
要求,需要在main 函数中测试上述RMB 类的功能。
#include <iostream>
using namespace std;
class RMB{
private:
int yuan;
int jiao;
int fen;
static int count;
public:
RMB(){cout << "RMB::无参初始化完成" << endl;
count++;}
RMB(int yuan,int jiao,int fen):yuan(yuan),jiao(jiao),fen(fen){
cout << "RMB::有参初始换完成" << endl;
count++;
}
~RMB(){
count--;
cout <<"RMB对象以销毁" << endl;
}
RMB(const RMB &other) : yuan(other.yuan), jiao(other.jiao), fen(other.fen) {
cout << "RMB::拷贝构造函数完成" << endl;
count++;
}
const RMB operator+( RMB &R)const{
RMB temp;
temp.yuan=yuan+R.yuan;
temp.jiao=jiao+R.jiao;
temp.fen=fen+R.fen;
if(temp.fen/10>0){
temp.jiao+=(temp.fen/10);
temp.fen-=10;
}
if(temp.jiao/10>0){
temp.yuan+=(temp.jiao/10);
temp.jiao-=10;
}
return temp;
}
const RMB operator-(const RMB &R)const{
RMB temp;
temp.yuan=yuan-R.yuan;
temp.jiao=jiao-R.jiao;
temp.fen=fen-R.fen;
if(temp.fen/10<0){
temp.jiao-=1;
temp.fen+=10;
}
if(temp.jiao/10<0){
temp.yuan-=1;
temp.jiao+=10;
}
return temp;
}
bool operator>(const RMB &R){
if(yuan>R.yuan){
return true;
}else if(jiao>R.jiao){
return true;
}else if(fen>R.fen){
return true;
}else{
return false;
}
}
RMB &operator--(){
--yuan;
--jiao;
--fen;
if(jiao<0){
yuan--;
jiao+=10;
}
if(fen<0){
jiao--;
fen+=10;
}
return *this;
}
const RMB operator--(int){
RMB temp;
temp.yuan=yuan--;
temp.jiao=jiao--;
temp.fen=fen--;
if(temp.jiao<0){
temp.yuan--;
temp.jiao+=10;
}
if(temp.fen<0){
temp.jiao--;
temp.fen+=10;
}
return temp;
}
void display(){
cout <<"yuan=" << yuan << "jiao=" << jiao << "fen=" << fen <<endl;
}
static void RMB_num(){
cout << "当前RMB类有" << count << "个"<< endl;
}
};
int RMB::count=0;
int main()
{
RMB r1(10,5,6);
RMB r2(10,5,6);
RMB r3=r1+r2;
r3.display();
cout << "________________" <<endl;
if(r3>r2){
cout << "r3>r2" << endl;
}else{
cout << "r2>r3" << endl;
}
cout << "_______________" <<endl;
RMB r4=r3--;
r4.display();
cout <<"________________" << endl;
RMB r5=--r3;
r5.display();
cout <<"________________" <<endl;
r5.RMB_num();
return 0;
}