-
直接调用和通过接口调用查看全部
-
默认public查看全部
-
学到了查看全部
-
静态类 1.用于基础类库 2.用于扩展指定类内容 如: static class PetGuide{ static public void HowtoFeed(this Dog dog){ ..... } } Dog dog = new Dog(); Dog.HowtoFeed();查看全部
-
构造函数重载查看全部
-
牛,解决了我的疑惑查看全部
-
虚方法,override,牛B查看全部
-
自定义转换类型: 显式: static explicit operator 转换类型名(被转换类型名){return new 转换的类型();} 隐形:static implicit operator 转换类型名(被转换类型名){return new 转换的类型();} 显式调用:Dog dog = (Dog)cat; 隐式调用:Dog dog = new Dog(); Cat cat = dog;查看全部
-
在构造函数中调用仅仅有名字的构造函数查看全部
-
虚方法和多态查看全部
-
隐藏方法示意图查看全部
-
隐藏方法查看全部
-
易维护,易扩展,易开发,一切皆对象查看全部
-
自定义转换类型: 显式: static explicit operator 转换类型名(被转换类型名){return new 转换的类型();} 隐形:static implicit operator 转换类型名(被转换类型名){return new 转换的类型();} 显式调用:Dog dog = (Dog)cat; 隐式调用:Dog dog = new Dog(); Cat cat = dog;查看全部
-
静态类 1.用于基础类库 2.用于扩展指定类内容 如: static class PetGuide{ static public void HowtoFeed(this Dog dog){ ..... } } Dog dog = new Dog(); Dog.HowtoFeed();查看全部
举报
0/150
提交
取消