摘要: public interface I ... able (以I开头,以able结尾,代表一种能力) { 成员; } 接口就是一种规范,一种能力。只要一个类继承了一个接口,这个类就必须实现这个接口中的所有成员。 为了多态,接口不能被实例化,也就是说,接口不能被new(不能创建对象)目前不能创建对象的有 阅读全文
posted @ 2021-08-10 21:19 静态类 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 我们任何对象调用ToString的时候,打出来的都是这个类的命名空间的名字 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tas 阅读全文
posted @ 2021-08-10 11:32 静态类 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 在类前面加一个sealed 这个类就成了密封类 密封类的特点:密封类不可以被别人继承,但是可以继承别人 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System 阅读全文
posted @ 2021-08-10 11:09 静态类 阅读(125) 评论(0) 推荐(0) 编辑
摘要: partial 在类名前面加partial 部分类 可以在同一个项目中创建两个同名的类,然后这两个类实质上就是一个,但是可以分开写程序,里面包含的方法字段参数都可以通用 using System; using System.Collections.Generic; using System.Linq 阅读全文
posted @ 2021-08-10 11:04 静态类 阅读(59) 评论(0) 推荐(0) 编辑