• 10_10C++


    X-mid

    在这里插入图片描述

    #include 
    using namespace std;
    class Kun
    {
        //算术运算符
        friend const Kun operator+(const Kun &k1,const Kun &k2);
        friend const Kun operator-(const Kun &k1,const Kun &k2);
        friend const Kun operator*(const Kun &k1,const Kun &k2);
        friend const Kun operator/(const Kun &k1,const Kun &k2);
        //关系运算符
        friend bool operator==(const Kun &k1,const Kun &k2);
        friend bool operator>(const Kun &k1,const Kun &k2);
        friend bool operator<(const Kun &k1,const Kun &k2);
        friend bool operator!=(const Kun &k1,const Kun &k2);
        //赋值运算符
        friend Kun &operator+=(Kun &k1,const Kun &k2);
        friend Kun &operator-=(Kun &k1,const Kun &k2);
        friend Kun &operator*=(Kun &k1,const Kun &k2);
        friend Kun &operator/=(Kun &k1,const Kun &k2);
    
    private:
         int a;
         int b;
    public:
        Kun()
        {}
        Kun(int a,int b):a(a),b(b)
        {}
        void show()
        {
            cout << "a=" << a << endl << "b=" << b << endl;
        }
        //算术运算符
    //    const Kun operator+( const Kun &k) const
    //    {
    //        Kun temp;
    //        temp.a = a + k.a;
    //        temp.b = b + k.b;
    //        return temp;
    //    }
    //    const Kun operator-( const Kun &k) const
    //    {
    //        Kun temp;
    //        temp.a = a - k.a;
    //        temp.b = b - k.b;
    //        return temp;
    //    }
    //    const Kun operator*( const Kun &k) const
    //    {
    //        Kun temp;
    //        temp.a = a * k.a;
    //        temp.b = b * k.b;
    //        return temp;
    //    }
    //    const Kun operator/( const Kun &k) const
    //    {
    //        Kun temp;
    //        temp.a = a / k.a;
    //        temp.b = b / k.b;
    //        return temp;
    //    }
    //    const Kun operator%( const Kun &k) const
    //    {
    //        Kun temp;
    //        temp.a = a % k.a;
    //        temp.b = b % k.b;
    //        return temp;
    //    }
        //关系运算符
    //    bool operator==(const Kun &k) const
    //    {
    //        if(a == k.a && b == k.b)
    //        {
    //            return true;
    //        }else
    //            return false;
    //    }
    //    bool operator>(const Kun &k) const
    //    {
    //        if(a > k.a && b > k.b){
    //            return true;
    //        }else
    //            return false;
    //    }
    //    bool operator<(const Kun &k) const
    //    {
    //        if(a < k.a && b < k.b){
    //            return true;
    //        }else
    //            return false;
    //    }
    //    bool operator!=(const Kun &k) const
    //    {
    //        if(a != k.a && b != k.b){
    //            return true;
    //        }else
    //            return false;
    //    }
        //赋值运算符
    //    Kun &operator+=(const Kun &k2)
    //    {
    //        a += k2.a;
    //        b += k2.b;
    //        return *this;
    //    }
    //    Kun &operator-=(const Kun &k2)
    //    {
    //        a -= k2.a;
    //        b -= k2.b;
    //        return *this;
    //    }
    //    Kun &operator=(const Kun &k2)
    //    {
    //      if(this!=&k2){
    //            a = k2.a;
    //            b = k2.b;
    //      }
    //        return *this;
    //    }
    //    Kun &operator*=(const Kun &k2)
    //    {
    //        a *= k2.a;
    //        b *= k2.b;
    //        return *this;
    //    }
    //    Kun &operator/=(const Kun &k2)
    //    {
    //        a /= k2.a;
    //        b /= k2.b;
    //        return *this;
    //    }
    };
    
    //算术运算符
    const Kun operator+(const Kun &k1,const Kun &k2)
    {
        Kun temp;
        temp.a = k1.a + k2.a;
        temp.b = k1.b + k2.b;
        return temp;
    }
    const Kun operator-(const Kun &k1,const Kun &k2)
    {
        Kun temp;
        temp.a = k1.a - k2.a;
        temp.b = k1.b - k2.b;
        return temp;
    }
    const Kun operator*(const Kun &k1,const Kun &k2)
    {
        Kun temp;
        temp.a = k1.a * k2.a;
        temp.b = k1.b * k2.b;
        return temp;
    }
    const Kun operator/(const Kun &k1,const Kun &k2)
    {
        Kun temp;
        temp.a = k1.a / k2.a;
        temp.b = k1.b / k2.b;
        return temp;
    }
    //关系运算符
    bool operator==(const Kun &k1,const Kun &k2)
    {
           if(k1.a == k2.a && k1.b == k2.b)
           {
               return true;
           }else
               return false;
    }
    bool operator>(const Kun &k1,const Kun &k2)
    {
           if(k1.a >k2.a && k1.b > k2.b)
           {
               return true;
           }else
               return false;
    }
    bool operator<(const Kun &k1,const Kun &k2)
    {
           if(k1.a < k2.a && k1.b < k2.b)
           {
               return true;
           }else
               return false;
    }
    bool operator!=(const Kun &k1,const Kun &k2)
    {
           if(k1.a != k2.a && k1.b != k2.b)
           {
               return true;
           }else
               return false;
    }
    //赋值运算符
    Kun &operator+=(Kun &k1,const Kun &k2)
    {
        k1.a += k2.a;
        k1.b += k2.b;
        return k1;
    }
    Kun &operator-=(Kun &k1,const Kun &k2)
    {
        k1.a -= k2.a;
        k1.b -= k2.b;
        return k1;
    }
    Kun &operator*=(Kun &k1,const Kun &k2)
    {
        k1.a *= k2.a;
        k1.b *= k2.b;
        return k1;
    }
    Kun &operator/=(Kun &k1,const Kun &k2)
    {
        k1.a /= k2.a;
        k1.b /= k2.b;
        return k1;
    }
    int main()
    {
        Kun k(10,10);
        Kun kk(10,10);
        Kun kkk = k + kk;
        kkk.show();
        if(kkk == kk){
          cout << "左右操作数想等" << endl;
        }else if(kkk > kk){
            cout << "左操作数大于右操作数" << endl;
        }else if(kkk < kk){
            cout << "左操作数小于右操作数" << endl;
        }else{
            cout << "不知道" << endl;
        }
        kkk+=kk;
        kkk.show();
        kkk-=kk;
        kkk.show();
        return 0;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
  • 相关阅读:
    C语言笔记22 •结构体•
    Python中文分词及词频统计
    小型洗衣机什么牌子好又便宜?内衣洗衣机推荐
    springboot websocket全套模板,省去搭建的烦恼
    OSPF 动态路由协议(思科、华为)
    部署zookeeper+kafka
    【Linux详解】——共享内存
    cmd暂停命令pause
    花书——PyTorch版本
    【JavaSE】Map接口--深入源码解读HashMap与HashTable
  • 原文地址:https://blog.csdn.net/qq_45910739/article/details/133753681