摘要:using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace ConsoleApplication3{ abstract class AbstractCompnent { abstract public void operation(); } class Leaf:AbstractCompnent { string str; public Leaf(string str) {...
阅读全文
07 2012 档案
摘要:using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace ConsoleApplication3{ abstract class Compnent { abstract public void Operation(); } class ConcreateCompnent : Compnent { public override void Operation() { ...
阅读全文
摘要:// "Handler"using System;using System.Collections.Generic;using System.Text;using System.Reflection;using System.Collections;namespace ConsoleApplication3{ abstract public class Builder { abstract public void BuilderWheel(); abstract public void BuilderEngine(); abstract ...
阅读全文
摘要:// "Handler"using System;using System.Collections.Generic;using System.Text;using System.Reflection;namespace ConsoleApplication3{ abstract class Factory { abstract public ProductA ProductA(); abstract public ProductB ProductB(); } class WindowFactory : Factory { ...
阅读全文