释蝉

博客园 首页 新随笔 联系 订阅 管理

2020年4月1日 #

摘要: namespace ConsoleApp4 { class Client { static void Main(string[] args) { // 南昌工厂制作南昌的鸭脖和鸭架 AbstractFactory nanChangFactory = new NanChangFactory(); Ya 阅读全文
posted @ 2020-04-01 15:09 释蝉 阅读(134) 评论(0) 推荐(0) 编辑

摘要: namespace ConsoleApp6 { class Program { static void Main(string[] args) { FactoryBase shanghai=new ShangHiaFactory(); YaBo yaBo = shanghai.CreateYaBo( 阅读全文
posted @ 2020-04-01 15:07 释蝉 阅读(78) 评论(0) 推荐(0) 编辑

摘要: 1、饿汉式(静态常量)[可用] public class Singleton { private static Singleton INSTANCE = new Singleton(); private Singleton(){} public static Singleton getInstanc 阅读全文
posted @ 2020-04-01 15:06 释蝉 阅读(129) 评论(0) 推荐(0) 编辑