摘要:
1、不管是父类调用子类的方法,还是获取子类的属性,道理都是一样的, 依赖倒置只是其中一个方法 public class Child:Parent { public string Default {get;set;} public Child() { Default="默认值"; } } 我现在父类需 阅读全文
摘要:
1、lock internal class Program { static object lockObject=new object(); static void Main(string[] args) { Student student = new Student(); Thread threa 阅读全文