12.1运算符重载

#include 

using namespace std;
class Stu
{
    friend const Stu operator-(const Stu &L, const Stu &R);
    friend bool operator<(const Stu &L,const Stu &R);
    friend Stu operator-=(Stu &L,const Stu &R);
private:
    int a;
    int b;
public:
    Stu(){}
    Stu(int a,int b):a(a),b(b)
    {}
//    const Stu operator-(const Stu &R)const
//    {
//        Stu temp;
//        temp.a=a-R.a;
//        temp.b=b-R.b;
//        return temp;
//    }
//    bool operator<(const Stu &R)const
//    {
//        if(a

12.1运算符重载_第1张图片

你可能感兴趣的:(数据库)