C#设计模式随书源代码.全书一共介绍了23种设计模式

源代码在线查看: singlespooler.cs

软件大小: 771 K
上传用户: scorpioll
关键词: 设计模式 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				
				namespace singleSpooler
				{
					/// 
					/// Summary description for Class1.
					/// 
					public class singleSpooler 	{
						static void Main(string[] args) { 
							Spooler pr1, pr2;
				      //open one printer--this should always work
				      Console.WriteLine ("Opening one spooler");
				      try {
						pr1 = new Spooler();
				      }
				      catch (SingletonException e)	{
						  Console.WriteLine (e.Message);
					  }
				      //try to open another printer --should fail
				      Console.WriteLine ("Opening two spoolers");
				      try{
					      pr2 = new Spooler();
				      }
				      catch (SingletonException e) {
						  Console.WriteLine (e.Message);
					  }
				}
					}
				}
							

相关资源