2018年2月1日

C#《大话设计模式》之模板方法模式学习笔记

摘要: static void Main(string[] args) { Console.WriteLine("学生甲抄的试卷:"); TestPaper A = new TestPaperA(); A.TestQuestion1(); A.TestQuestion2(); ... 阅读全文

posted @ 2018-02-01 11:22 鲁广广 阅读(186) 评论(0) 推荐(0) 编辑

C#《大话设计模式》之原型模式学习日记

摘要: class Program { static void Main(string[] args) { Resume a = new Resume("大鸟"); a.SetPersonalInfo("男", "29"); a.SetWorkExperience("1998-2000", "... 阅读全文

posted @ 2018-02-01 09:03 鲁广广 阅读(131) 评论(0) 推荐(0) 编辑

导航