题目:
根据给定头文件写cpp文件
/********** 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 **********/
/********** BEGIN **********/
#ifndef _INTOP_H_
#define _INTOP_H_
#include"Int.h"
#include <iostream>
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()<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()>=rhs.getValue();}
std::ostream& operator<<(std::ostream& os,Int const& rhs)
{os<<rhs.getValue();return os;}
std::istream& operator>>(std::istream& is,Int& rhs)
{int n;is>>n;rhs.setValue(n);return is;}
#endif
/********** END **********/
考点:
1.自增自减运算符重载,区分前后!!(后置重载函数会传入形式参数,但这只作为区别于前置重载函数的特征,并不会真的传参,故在函数内部不可以!!!)
2.输入输出运算符重载,注意输入传参无const
3.输入输出只能重载为类的友元函数。