摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace 类_继承 7 { 8 // 基类 : 动物 9 public abstract cl 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 /*--------------------------------------------------------------------------------------------... 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 /*--------------------------------------------------------------------------------------------... 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 /* 7 * 私有构造函数: 8 * 1. 只能在类内部调用 9 * 2. 通过类的方法返回类的实例 1 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 /* 7 * 类静态构造函数: 8 * 1. 主要用于初始化类中的静态成员 9 * 2. 不能使用任何访 阅读全文