摘要:
/** * 版权所有 2022 涂聚文有限公司 * 许可信息查看: * 描述: * Core Java, Volume I: Fundamentals, Twelfth Edition by Cay S.Horstamnn * Core Java, Volume II: Advanced Featu 阅读全文
摘要:
/// <summary> /// Abstract class Subject /// 代理模式 Proxy Pattern /// Structural Design Patterns /// geovindu, Geovin Du edit /// </summary> public abst 阅读全文
摘要:
/// <summary> /// Abstract Factory抽像工厂 /// geovindu,Geovin Du eidt /// </summary> public interface IShape { void Draw(); } /// <summary> /// /// </sum 阅读全文
摘要:
/// <summary> /// geovindu, Geovin Du,涂聚文 Edit /// </summary> public class DuModel { private string name; private int price, quantity; /// <summary> / 阅读全文
摘要:
#region Animal Hierarchy /* * Both the Dog and Tiger classes will * implement the IAnimal interface method. */ /// <summary> /// 工厂方法模式 Factory Method 阅读全文