设计模式 ------- 仿写Android RxJava 中的装饰器模式

2023-12-16 01:08

本文主要是介绍设计模式 ------- 仿写Android RxJava 中的装饰器模式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

仿写RxJava中的装饰器模式:


整个例子的背景:用户选择商品、下单、店家发货、快递、拿到商品。

交易类:Delivery

public abstract class Delivery {public abstract void transport(Product product);public void arrive(Product product){transport(product);}// 创建订单与收获地址public static Delivery create(String name,Order order){// 创建收获地址DeliveryCreate deliveryCreate=new DeliveryCreate(order);// 创建快递return new DeliveryProcess(deliveryCreate,name);}// 设置商品传递流程public Delivery sendOrderToLocation(String name){return new DeliveryProcess(this,name);}// 设置商品传递流程,且做些事public Delivery sendOrderToLocation(String name,String thing){return new DeliveryProcess(this,name,thing);}// 转换商品public Delivery map(String name,Exchange<?,?> p){return new DeliveryProcess(this,name,p);}
}

创建订单和收获地址类:

public class DeliveryCreate extends Delivery{// 订单private Order order;public DeliveryCreate(Order order){this.order = order;}// 收获地址@Overridepublic void transport(Product product) {System.out.println("用户拿到了商品");order.apply(product);}
}

订单类:Order

public interface Order {void apply(Product dothing);
}

快递传递类:DeliveryProcess

public class DeliveryProcess extends Delivery{private Exchange exchange;private String name;private String otherThing;private Delivery parent;public DeliveryProcess(Delivery nextNode, String name){System.out.println("LogOut:订单到达-----"+name);this.parent= nextNode;this.name= name;}public DeliveryProcess(Delivery nextNode,String name,Exchange exchange){System.out.println("LogOut:订单到达-----"+name);this.name=name;this.parent= nextNode;this.exchange= exchange;}public DeliveryProcess(Delivery nextNode, String name,String otherThing){System.out.println("LogOut:订单到达-----"+name);this.parent= nextNode;this.name= name;this.otherThing=otherThing;}// 传递快递@Overridepublic void transport(Product product) {if(name!=null){System.out.println("LogOut:商品已发货,目前到达-----"+name);}if(otherThing!=null){System.out.println("LogOut:商品检查:-----"+otherThing);}Product newProduct=product;if (exchange!=null){newProduct=exchange.change(product);}// 将快递给下一个快递站parent.transport(newProduct);}}

商品类:Product

public interface Product<T> {void size(int d);void number(int t);void color(String  e);void content(T info);
}

商品转换类:

public interface Exchange<R,T> {Product<T> change(Product<R> product);
}

main:

Delivery.create("用户下单地点",new Order() {@Overridepublic void apply(Product dothing) {dothing.color("Red");dothing.size(100);dothing.number(10);dothing.content("三只松鼠");}}).sendOrderToLocation("广东","检查下是否过期了").sendOrderToLocation("四川","看看好不好吃???").sendOrderToLocation("三只松鼠旗舰店").arrive(new Product<String>() {@Overridepublic void number(int d) {System.out.println("商品的个数:"+d);}@Overridepublic void size(int big) {System.out.println("商品的大小:"+big);}@Overridepublic void color(String col) {System.out.println("商品的颜色:"+col);}@Overridepublic void content(String str) {System.out.println("商品的类型:"+str);}});}

执行结果:

LogOut:订单到达-----用户下单地点
LogOut:订单到达-----广东
LogOut:订单到达-----四川
LogOut:订单到达-----三只松鼠旗舰店
LogOut:商品已发货,目前到达-----三只松鼠旗舰店
LogOut:商品已发货,目前到达-----四川
LogOut:商品检查:-----看看好不好吃???
LogOut:商品已发货,目前到达-----广东
LogOut:商品检查:-----检查下是否过期了
LogOut:商品已发货,目前到达-----用户下单地点
用户拿到了商品,三只松鼠
商品的颜色:Red
商品的大小:100
商品的个数:10
商品的类型:三只松鼠

添加商品转换:

Delivery.create("用户下单地点",new Order() {@Overridepublic void apply(Product dothing) {dothing.color("Red");dothing.size(100);dothing.number(10);dothing.content(12);}}).sendOrderToLocation("广东","检查下是否过期了").map("重庆", new Exchange<Integer, String>() {@Overridepublic Product<Integer> change(Product food) {return new Product<Integer>() {@Overridepublic void number(int d) {System.out.println("商品被掉包:number");food.number(5);}@Overridepublic void size(int big) {System.out.println("商品被掉包:size");food.size(big);}@Overridepublic void color(String cor) {System.out.println("商品被掉包:color");food.color("绿色");}@Overridepublic void content(Integer str) {System.out.println("商品被掉包:info");food.content("重庆火锅");}};}}).sendOrderToLocation("四川","看看好不好吃???").sendOrderToLocation("三只松鼠旗舰店").arrive(new Product<String>() {@Overridepublic void number(int d) {System.out.println("商品的个数:"+d);}@Overridepublic void size(int big) {System.out.println("商品的大小:"+big);}@Overridepublic void color(String col) {System.out.println("商品的颜色:"+col);}@Overridepublic void content(String str) {System.out.println("商品的类型:"+str);}});}

打印结果:

LogOut:订单到达-----用户下单地点
LogOut:订单到达-----广东
LogOut:订单到达-----重庆
LogOut:订单到达-----四川
LogOut:订单到达-----三只松鼠旗舰店
LogOut:商品已发货,目前到达-----三只松鼠旗舰店
LogOut:商品已发货,目前到达-----四川
LogOut:商品检查:-----看看好不好吃???
LogOut:商品已发货,目前到达-----重庆
LogOut:商品已发货,目前到达-----广东
LogOut:商品检查:-----检查下是否过期了
LogOut:商品已发货,目前到达-----用户下单地点
用户拿到了商品
商品被掉包:color
商品的颜色:绿色
商品被掉包:size
商品的大小:100
商品被掉包:number
商品的个数:5
商品被掉包:info
商品的类型:重庆火锅

上面的仿写,其实就做了两件事:在拿到商品前,不停的装饰自己(即添加额外操作),拿到商品后,不停的卸装(执行额外操作,然后将商品传给下一层)。

这种设计模式是一种垂直方向添加功能,上一层需要持有下一层的对象。

缺点: 多层装饰比较复杂

 

这篇关于设计模式 ------- 仿写Android RxJava 中的装饰器模式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/498551

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo