Java设计模式——模板方法设计模式——抽象类的运用

1.定义:定义一个操作中算法的骨架,而将可变部分的实现延迟到子类中。

注:模板方法设计模式使得子类在不改变算法结构的基础上重新定义该算法的某些特定的步骤。


2.代码示例

//模板方法设计模式
import java.util.Random;

public class TemplateMethod
{
	public static void main(String[] args)
	{
		Game game = new Friend();
		//game.paly();
		
		//替换game.paly();
		if(game instanceof Friend)
		{
			Friend friend = (Friend)game;
			friend.play();
		}

		Game g = new Partner();
		g.play();
	}
}

abstract class Game
{
	public void play()
	{
		System.out.println("游戏开始!");
		System.out.println("结果:");
		if(result())
		{
			System.out.println("恭喜你,你赢了!");
		}
		else
		{
			System.out.println("很遗憾,你输了!");
		}
	}
	public abstract boolean result();
}

class Friend extends Game
{
	public boolean result()
	{
		Random random = new Random();
		return random.nextBoolean();
	}
}

class Partner extends Game
{
	public boolean result()
	{
		return false;
	}
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值