04 2022 档案
摘要:Thread thread = new Thread(ThreadStartUpdate); thread.IsBackground = true; //设为后台运行 thread.Start(); //开始线程 private void ThreadStartUpdate() { string e
阅读全文
摘要:/// <summary> /// 1现金收费抽象类 /// </summary> abstract class CashSuper { public abstract double acceptCash(double money); } /// <summary> /// 2返利收费子类 ///
阅读全文
摘要:class Program { static void Main(string[] args) { #region v0.1 //ConcretePrototypel pl = new ConcretePrototypel("1"); //ConcretePrototypel c1 = (Concr
阅读全文
摘要:class Program { static void Main(string[] args) { Person xc = new Person("小菜"); Console.WriteLine("\n第一种装扮:"); Sneakers pqx = new Sneakers(); BigTrous
阅读全文
摘要:定义:定义一个操作中的算法的骨架,而将一些步骤延迟到子类中。模板方法使得子类可以不改变一个算法的结构即可重定义该算法的某些特定步骤。 模板方式模式是通过把不变行为搬移到超类,去除子类中的重复代码来体现它的优势。当不变的和可变的行为在方法的子类实现中混合在一起的时候,不变的行为就会在子类中重复出现。我
阅读全文
摘要:static void Main(string[] args) { Console.WriteLine("NumberA:"); string NumberA = Console.ReadLine(); Console.WriteLine("NumberB:"); string NumberB =
阅读全文