03 2022 档案
摘要:超市收银系统 商品类 父类: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 超市收银系统 {
阅读全文
摘要:C#中的访问修饰符 修饰符 作用 public 公开的公共的 private 私有的,只能在当前类的内部访问 protected 受保护的,只能在当前类的内部以及该类的子类中访问 internal 只能在当前项目中访问。在用一个项目中,internal和public的权限是一样的。 protecte
阅读全文
摘要:多态专题 多态的概念 让一个对象能够表现出多种的状态(类型),屏蔽各个子类对象的差异 应用场景: using 多态学习; Chinese cn1 = new Chinese("徐"); Chinese cn2 = new Chinese("徐"); Japanese jp = new Japanes
阅读全文