`
Flyingh
  • 浏览: 18318 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

Strategy

 
阅读更多
有一个鸟类(Bird),它有一系列的方法,显示(display)方法,飞行(fly)方法,睡觉(sleep)方法,但是不同的鸟的外表(display方法实现)不一样,有的鸟不会飞,有的鸟站着睡……
下面用策略模式实现

策略模式:定义算法族,分别封装起来,让它们之间可以互相替换,此模式让算法的变化独立于使用算法的客户
FlyBehavior接口代码如下:
package com.flyingh.behavior;

public interface FlyBehavior {
	void fly();
}

SleepBehavior接口代码如下:
package com.flyingh.behavior;

public interface SleepBehavior {
	void sleep();
}

下面是对FlyBehavior行为接口的实现:
FlyNoWay代码如下:
package com.flyingh.fly.impl;

import com.flyingh.behavior.FlyBehavior;
//不会飞
public class FlyNoWay implements FlyBehavior {

	@Override
	public void fly() {
		System.out.println("fly no way");
	}

}

FlyWithWings代码如下:
package com.flyingh.fly.impl;

import com.flyingh.behavior.FlyBehavior;

public class FlyWithWings implements FlyBehavior {

	@Override
	public void fly() {
		System.out.println("fly with wings");
	}

}

下面是对SleepBehavior行为的不同实现:
HomeSleep代码如下:
package com.flyingh.sleep.impl;

import com.flyingh.behavior.SleepBehavior;

public class HomeSleep implements SleepBehavior {

	@Override
	public void sleep() {
		System.out.println("home sleep");//在鸟窝里睡
	}

}

StandSleep代码如下:
package com.flyingh.sleep.impl;

import com.flyingh.behavior.SleepBehavior;

public class StandSleep implements SleepBehavior {

	@Override
	public void sleep() {
		System.out.println("stand sleep");//站着睡
	}

}

下面是Bird类的代码,如下:
package com.flyingh.bean;

import com.flyingh.behavior.FlyBehavior;
import com.flyingh.behavior.SleepBehavior;

public abstract class Bird {
	//委托
	private FlyBehavior flyBehavior;
	private SleepBehavior sleepBehavior;

	public Bird() {
		super();
	}

	public Bird(FlyBehavior flyBehavior, SleepBehavior sleepBehavior) {
		super();
		this.flyBehavior = flyBehavior;
		this.sleepBehavior = sleepBehavior;
	}

	public void say() {
		System.out.println("bird say");
	}

	public abstract void display();

	public void performFly() {
		flyBehavior.fly();
	}

	public void performSleep() {
		sleepBehavior.sleep();
	}

	public FlyBehavior getFlyBehavior() {
		return flyBehavior;
	}

	public void setFlyBehavior(FlyBehavior flyBehavior) {
		this.flyBehavior = flyBehavior;
	}

	public SleepBehavior getSleepBehavior() {
		return sleepBehavior;
	}

	public void setSleepBehavior(SleepBehavior sleepBehavior) {
		this.sleepBehavior = sleepBehavior;
	}
}

下面是Swallow类的代码,如下:
package com.flyingh.bean;

import com.flyingh.fly.impl.FlyWithWings;
import com.flyingh.sleep.impl.HomeSleep;

public class Swallow extends Bird {
	public Swallow() {
		setFlyBehavior(new FlyWithWings());
		setSleepBehavior(new HomeSleep());
	}

	@Override
	public void display() {
		System.out.println("I'm a swallow");
	}

}

下面是DanDingHe类的代码,如下:
package com.flyingh.bean;

import com.flyingh.fly.impl.FlyNoWay;
import com.flyingh.sleep.impl.StandSleep;

public class DanDingHe extends Bird {

	public DanDingHe() {
		setFlyBehavior(new FlyNoWay());
		setSleepBehavior(new StandSleep());
	}

	@Override
	public void display() {
		System.out.println("I'm a dandinghe");
	}

}

下面是Test类的代码,如下:
package com.flyingh.test;

import com.flyingh.bean.Bird;
import com.flyingh.bean.Swallow;
import com.flyingh.fly.impl.FlyNoWay;
import com.flyingh.sleep.impl.StandSleep;

public class Test {
	public static void main(String[] args) {
		Bird bird = new Swallow();
		bird.performFly();
		bird.performSleep();

		bird.setFlyBehavior(new FlyNoWay());
		bird.setSleepBehavior(new StandSleep());
		bird.performFly();
		bird.performSleep();
	}
}

程序运行结果如下:
fly with wings
home sleep
fly no way
stand sleep
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    The All Weather Strategy

    全天候策略(All Weather Strategy)是一种投资组合管理方法,旨在通过跨资产类别的风险平衡分配来实现长期稳定的回报。该策略由桥水基金(Bridgewater Associates)创始人雷·达里奥(Ray Dalio)提出,并自1996年...

    Strategy An Introduction to Game Theory(3rd Edition).

    ### 游戏理论入门——《Strategy: An Introduction to Game Theory》第三版 #### 书籍概述 《Strategy: An Introduction to Game Theory》是一本由Joel Watson编写的关于游戏理论的经典教材,现已是第三版。该书由W...

    Informatica Update Strategy Transformation组件 详解

    "Informatica Update Strategy Transformation 组件详解" Informatica 的 Update Strategy Transformation 组件是一个强大的工具,用于控制数据的更新策略。在数据集成和数据迁移过程中,Update Strategy ...

    策略模式 Strategy Pattern

    ### 策略模式 Strategy Pattern #### 概述 策略模式是一种行为设计模式,它使得算法可以在运行时被更改。这种模式允许一个类的行为或其算法在运行时根据需要进行改变,通过这种方式,我们可以轻松地扩展不同的算法...

    World Map Strategy Kit 2 V9.7.1

    World Map Strategy Kit 2是功能强大的游戏工具包,可用于基于真实或虚构的世界地图创建策略游戏。 包括出色的视觉吸引力功能,这些功能实施起来很复杂,可以为您开发游戏提供AAA级启动。 ***视觉功能*** - 标准/...

    Competitive Strategy (Michael E. Porter)

    Competitive Strategy Techniques for Anal yzing Industries and Competitors (Michae l E. Porter) [size=13.3333px]Now nearing its sixtieth printing in English and tr anslated into nineteen languages, ...

    策略(strategy)模式

    2. **具体策略类(Concrete Strategy)**:实现了策略接口,提供了具体的算法实现。可以有多个具体策略类,每个类代表一种算法。 3. **上下文(Context)**:上下文使用策略接口来调用策略对象的算法。它通常包含了...

    Strategy.Game.Programming.With.Directx.9.0.Source.Code

    《Strategy.Game.Programming.With.Directx.9.0》是一本专为游戏开发者设计的书籍,主要探讨了如何利用DirectX 9.0进行即时战略(RTS)游戏的编程。DirectX是微软推出的一系列应用程序接口(API),主要用于多媒体,...

    PSO.zip_On Strategy_algorithm_article_cec2013_pso dynamic

    dynamic cooperative coevolution strategy was proposed. The strategy was added to the dynamic multi-swarm particle swarm optimization algorithm. And the dual grouping of population and decision ...

    VCPA-based hybrid strategy.zip

    In this study, we propose a hybrid variable selection strategy based on the continuous shrinkage of variable space which is the core idea of variable combination population analysis (VCPA). The VCPA-...

    STRATEGY-品牌私域流量搭建-2020.12-21页精品报告2020.pdf

    尽管提供的【部分内容】中包含大量OCR扫描错误和乱码,但依然可以推测出这份文件标题为《STRATEGY-品牌私域流量搭建-2020.12-21页精品报告2020.pdf》是一份专注于品牌私域流量搭建策略的行业报告。报告的标签为...

    走进设计模式之 策略模式(Strategy)

    在`Strategy.cpp`、`main.cpp`、`Context.cpp`、`Strategy.h`、`Context.h`等文件中,我们可以看到这种模式的具体实现,其中`a.out`是编译后的可执行文件。通过理解和应用策略模式,开发者可以更灵活地管理代码中的...

    Real-time Strategy FX v1.0

    《实时策略外汇交易系统在Unity中的应用:Real-time Strategy FX v1.0》 Unity引擎作为全球领先的跨平台游戏开发工具,已经广泛应用于各种类型的游戏制作,包括实时策略类游戏。"Real-time Strategy FX v1.0"是针对...

    Java 设计模式-策略模式(Strategy)Android讲解

    首先,策略模式由三个主要组成部分构成:上下文(Context)、策略(Strategy)接口和具体策略(Concrete Strategy)。上下文是使用策略的对象,它维护一个对策略的引用,并调用策略的接口来执行算法。策略接口定义了一组...

    行为型——Strategy(策略模式)

    策略模式的核心组成部分包括环境(Context)、策略(Strategy)和具体策略(Concrete Strategy)。 1. **环境(Context)**:这是使用策略的对象,它维持一个对策略对象的引用,可以在运行时根据需要选择合适的策略。环境...

    Real-time Strategy FX.rar

    "Real-time Strategy FX"是一个利用Unity引擎开发的项目,它将游戏开发技术与金融交易策略相结合,旨在提供一个直观、高效的外汇交易模拟环境。Unity因其强大的3D图形渲染能力、跨平台支持和丰富的社区资源,已经...

    sap release strategy 2013

    从提供的部分内容来看,2013年的SAP Release Strategy文档是为了解释SAP在软件产品发布方面的一般原则、策略和计划,这些计划虽然旨在指导未来的业务方向,但是由于变化的市场和技术环境,它们并不是最终的承诺。...

    Strategy Companion Analyzer 安裝手冊下載

    ### Strategy Companion Analyzer 安装手册知识点详解 #### 标题:Strategy Companion Analyzer 安裝手冊下載 **知识点概述:** 本手册详细介绍了如何安装和配置 Strategy Companion Analyzer 的过程,包括环境...

Global site tag (gtag.js) - Google Analytics