c#面向对象4

2021-02-18 23:16

阅读:522

1.运算符重载,简单,直观,自然的特点。

2.语法细节 public static Dog operator+(Dog male,Dog female){

return new Dog()l;

}

3.不能重载的=,&&,||,[],()等等

4.一元操作符 操作数必须是类或结构。

5.二元操作符至少一个。

6.     public static Pet operator ++(Pet pet){
        ++pet._Year;
        return pet;
    }

           


评论


亲,登录后才可以留言!