Csharp设计模式一书的源码

源代码在线查看: singlespooler.cs

软件大小: 761 K
上传用户: xof1234
关键词: Csharp 设计模式 源码
下载地址: 免注册下载 普通下载 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);
					  }
				}
					}
				}
							

相关资源