当前位置:网站首页>装饰器(二)
装饰器(二)
2020-11-08 21:03:00 【8Years】
//
// 模拟咖啡
// 1.抽象组件:需要装饰的抽象对象(接口或者抽象父类)
// 2.具体组件:需要装饰的对象
// 3.抽象装饰类:包含了对抽象组件的引用以及装饰着共有的方法
// 4.具体装饰类:被装饰的对象
public class TestDecoretorTwo {
public static void main(String[] args) {
Drink coffee = new coffee();
Drink suger = new Suger(coffee);
System.out.println(suger.cost() + "--->" + suger.Info());
Drink milk = new Milk(coffee);
System.out.println(milk.cost() + "--->" + milk.Info());
Drink milk1 = new Milk(suger);
System.out.println(milk1.cost() + "--->" + milk1.Info());
}
}
// 1.抽象组件
interface Drink{
int cost();
String Info();
}
// 2.具体组件:
class coffee implements Drink{
String name="原味咖啡";
public int cost() {
return 10;
}
@Override
public String Info() {
return name;
}
}
// 3.抽象装饰类:
class Decorate implements Drink{
//对抽象组件的引用
private Drink drink;
public Decorate(Drink drink) {
//这里是一个构造器(this)
this.drink = drink;
}
@Override
public int cost() {
return this.drink.cost();
}
@Override
public String Info() {
return this.drink.Info();
}
}
// 4.具体装饰类1:
class Milk extends Decorate{
public Milk(Drink drink) {
//这里是一个构造器,(super)
super(drink);
}
@Override
public int cost() {
return super.cost()*4;
}
@Override
public String Info() {
return super.Info()+"加入了牛奶";
}
}
// 4.具体装饰类2:
class Suger extends Decorate{
public Suger(Drink drink) {
super(drink);
}
@Override
public int cost() {
return super.cost()*2;
}
@Override
public String Info() {
return super.Info()+"加入了蔗糖";
}
}
输出结果
20--->原味咖啡加入了蔗糖
40--->原味咖啡加入了牛奶
80--->原味咖啡加入了蔗糖加入了牛奶
版权声明
本文为[8Years]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4583813/blog/4708229
边栏推荐
- MYCAT build
- 单例模式的五种设计方案
- Five design schemes of singleton mode
- Dynamic ReLU:微软推出提点神器,可能是最好的ReLU改进 | ECCV 2020
- Tasks of the first week of information security curriculum design (analysis of 7 instructions)
- . net core cross platform resource monitoring library and dotnet tool
- Five factors to consider before choosing API management platform
- Classical dynamic programming: longest common subsequence
- Why need to use API management platform
- Dynamic relu: Microsoft's refreshing device may be the best relu improvement | ECCV 2020
猜你喜欢
随机推荐
不是程序员,代码也不能太丑!python官方书写规范:任何人都该了解的 pep8
Simple process of reading pictures by QT program developed by Python
[random talk] JS related thread model sorting
Flink系列(0)——准备篇(流处理基础)
net.sf.json.JSONObject对时间戳的格式化处理
Iptables from introduction to mastery
在Python中创建文字云或标签云
Django之简易用户系统(3)
动态规划之子序列问题解题模板
程序员都应该知道的URI,一文帮你全面了解
信息安全课程设计第一周任务(7条指令的分析)
【Elasticsearch 技术分享】—— 十张图带大家看懂 ES 原理 !明白为什么说:ES 是准实时的!
为什么需要使用API管理平台
iptables从入门到掌握
Part I - Chapter 1 Overview
go语言参数传递到底是传值还是传引用?
Chapter 2 programming exercises
PAT_ Grade A_ 1056 Mice and Rice
Development and deployment of image classifier application with fastai
SQL quick query