第1关:完整的包装类

题目: 

根据给定头文件写cpp文件

第1关:完整的包装类_第1张图片

/********** BEGIN **********/
#include"Int.h"

int Int::getValue()const{return value;}
void Int::setValue(int v){value=v;}
Int::Int(){value=0;}
Int::Int(int v){value=v;}
Int::Int(const Int&rhs){this->value=rhs.getValue();}
Int::~Int(){ }

Int& Int::operator=(const Int&rhs){this->value=rhs.getValue();return *this;}
Int& Int::operator+=(const Int&rhs){this->value+=rhs.getValue();return *this;}
Int& Int::operator-=(const Int&rhs){this->value-=rhs.getValue();return *this;}
Int& Int::operator*=(const Int&rhs){this->value*=rhs.getValue();return *this;}
Int& Int::operator/=(const Int&rhs){this->value/=rhs.getValue();return *this;}
Int& Int::operator%=(const Int&rhs){this->value%=rhs.getValue();return *this;}

Int& Int::operator++(){this->value+=1;return *this;}
Int& Int::operator--(){this->value-=1;return *this;}

Int Int::operator++(int tmp){Int temp=*this;this->value+=1;return temp;}
Int Int::operator--(int tmp){Int temp=*this;this->value-=1;return temp;}

/********** END **********/

 

 

 第1关:完整的包装类_第2张图片

/********** BEGIN **********/
#ifndef _INTOP_H_
#define _INTOP_H_
#include"Int.h"
#include 

const Int operator+(const Int&lhs,const Int&rhs)
{return lhs.getValue()+rhs.getValue();}
const Int operator-(const Int&lhs,const Int&rhs)
{return lhs.getValue()-rhs.getValue();}
const Int operator*(const Int&lhs,const Int&rhs)
{return lhs.getValue()*rhs.getValue();}
const Int operator/(const Int&lhs,const Int&rhs)
{return lhs.getValue()/rhs.getValue();}
const Int operator%(const Int&lhs,const Int&rhs)
{return lhs.getValue()%rhs.getValue();}

bool operator==(const Int&lhs,const Int&rhs)
{return lhs.getValue()==rhs.getValue();}
bool operator!=(const Int&lhs,const Int&rhs)
{return lhs.getValue()!=rhs.getValue();}
bool operator<(const Int&lhs,const Int&rhs)
{return lhs.getValue()(const Int&lhs,const Int&rhs)
{return lhs.getValue()>rhs.getValue();}
bool operator>=(const Int&lhs,const Int&rhs)
{return lhs.getValue()>=rhs.getValue();}

std::ostream& operator<<(std::ostream& os,Int const& rhs)
{os<>(std::istream& is,Int&  rhs)
{int n;is>>n;rhs.setValue(n);return is;}

#endif 
/********** END **********/

 考点:

1.自增自减运算符重载,区分前后!!(后置重载函数会传入形式参数,但这只作为区别于前置重载函数的特征,并不会真的传参,故在函数内部不可以!!!)

2.输入输出运算符重载,注意输入传参无const 

你可能感兴趣的:(头歌,算法,数据结构)