代码搜索:designpatterns

找到约 881 项符合「designpatterns」的源代码

代码结果 881
www.eeworm.com/read/145379/12732389

htm banner4n.htm

www.eeworm.com/read/145379/12732413

htm bot3c.htm

www.eeworm.com/read/145379/12732415

htm prebkban-1.htm

www.eeworm.com/read/145379/12732419

htm banner5h.htm

www.eeworm.com/read/145379/12732428

htm patcat.htm

Pattern Catalog function setFocus() { if ((navigator.appName != "Netscape") && (parseFloat(navigator.appVersion) == 2)) { return; } else { self.focus();
www.eeworm.com/read/145379/12732437

htm banner2.htm

www.eeworm.com/read/347000/6341378

cs redheadduck.cs

using System; using System.Collections.Generic; using System.Text; namespace DesignPatterns.Strategy.Ducks { public class RedheadDuck : Duck { public RedheadDuck() {
www.eeworm.com/read/347000/6341380

cs flywithwings.cs

using System; namespace DesignPatterns.Strategy.Ducks { public class FlyWithWings : IFlyBehavior { public FlyWithWings() {} #region IFlyBehavior Members public object Fly()
www.eeworm.com/read/347000/6341381

cs flynoway.cs

using System; namespace DesignPatterns.Strategy.Ducks { public class FlyNoWay : IFlyBehavior { public FlyNoWay() { } #region IFlyBehavior Members
www.eeworm.com/read/347000/6341382

cs iflybehavior.cs

using System; namespace DesignPatterns.Strategy.Ducks { public interface IFlyBehavior { object Fly(); } }