Chain of Responsibility 责任链模式

package com.lonton.designpatterns;

abstract class Chain
{
	public static int ONE = 1;
	public static int TWO = 2;
	public static int THREE = 3;
	protected int threshold;
	
	protected Chain next;
	
	public void setNext(Chain chain)
	{
		next = chain;
	}
	
	public void message(String msg, int priority)
	{
		if (priority <= threshold)
		{
			writeMessage(msg);
		}
		
		if (next != null)
		{
			next.message(msg, priority);
		}
	}
	
	abstract protected void writeMessage(String msg);
}

class AA extends Chain
{
	public AA(int threshold)
	{
		this.threshold = threshold;
	}

	@Override
	protected void writeMessage(String msg)
	{
		// TODO Auto-generated method stub
		System.out.println("A: " + msg);
	}
	
}

class B extends Chain
{
	public B(int threshold)
	{
		this.threshold = threshold;
	}

	@Override
	protected void writeMessage(String msg)
	{
		// TODO Auto-generated method stub
		System.out.println("B: " + msg);
	}
	
}

class C extends Chain
{
	public C(int threshold)
	{
		this.threshold = threshold;
	}

	@Override
	protected void writeMessage(String msg)
	{
		// TODO Auto-generated method stub
		System.out.println("C: " + msg);
	}
	
}

public class ChainOfResponsibilityTest
{
	private static Chain createChain()
	{
		Chain chain1 = new AA(Chain.THREE);
		
		Chain chain2 = new B(Chain.TWO);
		chain1.setNext(chain2);
		
		Chain chain3 = new C(Chain.ONE);
		chain2.setNext(chain3);
		
		return chain1;
	}
	
	public static void main(String[] args)
	{
		Chain chain = createChain();
		
		chain.message("Level 3", Chain.THREE);
		chain.message("Level 2", Chain.TWO);
		chain.message("Level 1", Chain.ONE);				
	}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值