資源簡介
C# 設計模式之【橋接模式】
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Text;
namespace?橋接模式
{
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????Abstraction?ab?=?new?RefinedAbstraction();
????????????ab.SetImplementor(new?ConcreteImplementorA());
????????????ab.Operation();
????????????ab.SetImplementor(new?ConcreteImplementorB());
????????????ab.Operation();
????????????Console.Read();
????????}
????}
????class?Abstraction
????{
????????protected?Implementor?implementor;
????????public?void?SetImplementor(Implementor?implementor)
????????{
????????????this.implementor?=?implementor;
????????}
????????public?virtual?void?Operation()
????????{
????????????implementor.Operation();
????????}
????}
????class?RefinedAbstrac
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\
?????文件?????????925??2007-05-22?15:28??橋接模式-基本代碼\橋接模式.sln
?????文件???????11264??2007-07-26?20:58??橋接模式-基本代碼\橋接模式.suo
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\bin\
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\bin\Debug\
?????文件???????16384??2007-07-26?20:51??橋接模式-基本代碼\橋接模式\bin\Debug\橋接模式.exe
?????文件???????15872??2007-07-26?20:51??橋接模式-基本代碼\橋接模式\bin\Debug\橋接模式.pdb
?????文件????????5632??2005-11-11?22:25??橋接模式-基本代碼\橋接模式\bin\Debug\橋接模式.vshost.exe
?????文件????????1820??2007-05-22?15:47??橋接模式-基本代碼\橋接模式\ClassDiagram1.cd
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\obj\
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\obj\Debug\
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\obj\Debug\TempPE\
?????文件???????16384??2007-07-26?20:51??橋接模式-基本代碼\橋接模式\obj\Debug\橋接模式.exe
?????文件???????15872??2007-07-26?20:51??橋接模式-基本代碼\橋接模式\obj\Debug\橋接模式.pdb
?????文件?????????154??2007-07-26?20:51??橋接模式-基本代碼\橋接模式\obj\橋接模式.csproj.FileList.txt
?????文件????????1423??2007-07-26?20:51??橋接模式-基本代碼\橋接模式\Program.cs
?????目錄???????????0??2009-03-23?08:56??橋接模式-基本代碼\橋接模式\Properties\
?????文件????????1195??2007-05-22?15:28??橋接模式-基本代碼\橋接模式\Properties\AssemblyInfo.cs
?????文件????????2030??2007-05-22?15:47??橋接模式-基本代碼\橋接模式\橋接模式.csproj
?????目錄???????????0??2009-03-23?08:56??橋接模式-手機01\
?????目錄???????????0??2009-03-23?08:56??橋接模式-手機01\橋接模式\
?????文件?????????925??2007-05-22?15:28??橋接模式-手機01\橋接模式.sln
?????文件???????12800??2007-08-05?16:13??橋接模式-手機01\橋接模式.suo
?????目錄???????????0??2009-03-23?08:56??橋接模式-手機01\橋接模式\bin\
?????目錄???????????0??2009-03-23?08:56??橋接模式-手機01\橋接模式\bin\Debug\
?????文件???????16384??2007-07-24?21:24??橋接模式-手機01\橋接模式\bin\Debug\橋接模式.exe
?????文件???????19968??2007-07-24?21:24??橋接模式-手機01\橋接模式\bin\Debug\橋接模式.pdb
?????文件????????5632??2005-11-11?22:25??橋接模式-手機01\橋接模式\bin\Debug\橋接模式.vshost.exe
?????文件????????2388??2007-07-24?21:24??橋接模式-手機01\橋接模式\ClassDiagram1.cd
?????目錄???????????0??2009-03-23?08:56??橋接模式-手機01\橋接模式\obj\
............此處省略54個文件信息
評論
共有 條評論