【设计模式】过滤器模式

过滤器顾名思义,定义一些过滤规则,将符合要求的内容筛选,就比如过滤不同大小或者不同颜色的水果,需要颜色和大小过滤器,筛选条件独立为对象,可以通过灵活组合形成过滤链条。避免大量使用判断语句。

案例代码:筛选不同颜色的苹果

  1. 被过滤对象(苹果)
// 苹果对象
class Apple {private String color;private int weight;public Apple(String color, int weight) {this.color = color;this.weight = weight;}public String getColor() { return color; }public int getWeight() { return weight; }
}
  1. 过滤器接口
// 过滤器接口
interface Filter {List<Apple> filter(List<Apple> apples);
}
  1. 具体过滤器实现
// 颜色过滤器(筛选红色苹果)
class ColorFilter implements Filter {public List<Apple> filter(List<Apple> apples) {List<Apple> result = new ArrayList<>();for (Apple apple : apples) {if ("red".equalsIgnoreCase(apple.getColor())) {result.add(apple);}}return result;}
}// 重量过滤器(筛选重量大于150g的苹果)
class WeightFilter implements Filter {public List<Apple> filter(List<Apple> apples) {List<Apple> result = new ArrayList<>();for (Apple apple : apples) {if (apple.getWeight() > 150) {result.add(apple);}}return result;}
}
  1. 组合过滤器(多条件筛选)
// 组合过滤器(同时满足多个条件)
class AndFilter implements Filter {private Filter filter1;private Filter filter2;public AndFilter(Filter filter1, Filter filter2) {this.filter1 = filter1;this.filter2 = filter2;}public List<Apple> filter(List<Apple> apples) {List<Apple> temp = filter1.filter(apples);return filter2.filter(temp);}
}
  1. 使用过滤器模式
public class FilterDemo {public static void main(String[] args) {List<Apple> apples = Arrays.asList(new Apple("Red", 200),new Apple("Green", 160),new Apple("Red", 140));// 单条件筛选:红色苹果Filter colorFilter = new ColorFilter();List<Apple> redApples = colorFilter.filter(apples);System.out.println("红色苹果数量:" + redApples.size()); // 输出:2// 组合筛选:红色且重量>150gFilter weightFilter = new WeightFilter();Filter andFilter = new AndFilter(colorFilter, weightFilter);List<Apple> result = andFilter.filter(apples);System.out.println("符合条件的苹果数量:" + result.size()); // 输出:1}
}

应用场景案例:用户权限过滤
场景描述
筛选出同时满足以下条件的用户:

  • 年龄在18岁以上
  • 所在城市为“北京”
  • 注册时间在2023年以后
    代码实现
// 用户对象
class User {private String name;private int age;private String city;private LocalDate registerDate;public User(String name, int age, String city, LocalDate registerDate) {this.name = name;this.age = age;this.city = city;this.registerDate = registerDate;}// Getter方法省略...
}// 年龄过滤器
class AgeFilter implements Filter {private int minAge;public AgeFilter(int minAge) {this.minAge = minAge;}public List<User> filter(List<User> users) {List<User> result = new ArrayList<>();for (User user : users) {if (user.getAge() >= minAge) {result.add(user);}}return result;}
}// 城市过滤器
class CityFilter implements Filter {private String city;public CityFilter(String city) {this.city = city;}public List<User> filter(List<User> users) {List<User> result = new ArrayList<>();for (User user : users) {if (city.equalsIgnoreCase(user.getCity())) {result.add(user);}}return result;}
}// 注册时间过滤器
class DateFilter implements Filter {private LocalDate startDate;public DateFilter(LocalDate startDate) {this.startDate = startDate;}public List<User> filter(List<User> users) {List<User> result = new ArrayList<>();for (User user : users) {if (user.getRegisterDate().isAfter(startDate)) {result.add(user);}}return result;}
}// 使用示例
public class UserFilterDemo {public static void main(String[] args) {List<User> users = Arrays.asList(new User("张三", 25, "北京", LocalDate.of(2024, 1, 1)),new User("李四", 17, "上海", LocalDate.of(2024, 2, 1)),new User("王五", 30, "北京", LocalDate.of(2022, 5, 1)));// 创建过滤器Filter ageFilter = new AgeFilter(18);Filter cityFilter = new CityFilter("北京");Filter dateFilter = new DateFilter(LocalDate.of(2023, 1, 1));// 组合过滤:年龄>=18 && 城市=北京 && 注册时间>2023Filter combinedFilter = new AndFilter(ageFilter, new AndFilter(cityFilter, dateFilter));List<User> validUsers = combinedFilter.filter(users);System.out.println("有效用户数量:" + validUsers.size()); // 输出:1}
}

过滤器模式应用场景

  1. 数据筛选:
    • 电商商品筛选(价格、品牌、评分)
    • 日志过滤(错误级别、时间范围)
  2. 权限系统:
    • 用户角色过滤(管理员、VIP用户)
    • 数据权限过滤(部门、区域)
  3. 数据清洗:
    • 去除无效数据(空值、异常值)
    • 敏感信息过滤(手机号脱敏)

过滤器模式优势

  1. 灵活组合条件:通过组合多个过滤器实现复杂逻辑
  2. 解耦过滤逻辑:每个过滤器独立维护,新增条件无需修改已有代码
  3. 可复用性高:同一过滤器可用于不同场景(如“北京用户筛选”可用于报表和推送)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/76363.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

STM32 CAN学习(一)

CAN总线应用最多的是汽车领域。 CAN&#xff08;Controller Area Network&#xff09;控制器 局域 网 局域网&#xff1a;把几台电脑连接到一台路由器上&#xff0c;这几台电脑就可以进行通讯了。 控制器在汽车中的专业术语叫做ECU&#xff08;Electronic Control Unit&…

多线程开发中List的使用

由于ArrayList在多线程高并发情况下是不安全的&#xff0c;因此要慎用&#xff0c;那么此时如果涉及到集合操作&#xff0c;应该怎么选&#xff1a; 方案一&#xff1a;Vector: 特点&#xff1a;通过给所有方法都用 synchronized 修饰从而保证线程安全&#xff0c; 缺点&…

论文阅读笔记:Denoising Diffusion Implicit Models (2)

0、快速访问 论文阅读笔记&#xff1a;Denoising Diffusion Implicit Models &#xff08;1&#xff09; 论文阅读笔记&#xff1a;Denoising Diffusion Implicit Models &#xff08;2&#xff09; 论文阅读笔记&#xff1a;Denoising Diffusion Implicit Models &#xff08…

人工智能在医疗领域的前沿应用与挑战

在当今数字化时代&#xff0c;人工智能&#xff08;AI&#xff09;技术正以前所未有的速度改变着我们的生活&#xff0c;其中医疗领域无疑是受益最为显著的行业之一。从疾病诊断、治疗方案制定到患者护理&#xff0c;AI的应用不仅提高了医疗服务的效率和质量&#xff0c;还为医…

【计算机网络】HTTP与HTTPS

文章目录 1. HTTP定义2. HTTP交互3. HTTP报文格式3.1 抓包工具-fiddler3.2 抓包操作3.3 报文格式3.3.1 请求报文3.3.2 响应报文 4. URL5. 请求头中的方法6. GET和POST的区别7. HTTP报头7.1 Host7.2 Content_Length7.3 Content_Type7.4 User-Agent(UA)7.5 Referer7.6 Cookie 8 状…

怎样提升大语言模型(LLM)回答准确率

怎样提升大语言模型(LLM)回答准确率 目录 怎样提升大语言模型(LLM)回答准确率激励与规范类知识关联类情感与语境类逆向思维类:为什么不,反面案例群体智慧类明确指令类示例引导类思维引导类约束限制类反馈交互类:对话激励与规范类 给予奖励暗示:在提示词中暗示模型如果回…

【分享】内外网文件摆渡系统:让数据传输更安全更可靠

【分享】Ftrans内外网文件摆渡系统&#xff1a;让数据传输更安全更可靠&#xff01; 随着大数据时代的到来&#xff0c;数据的重要性日渐得到重视&#xff0c;数据作为数字经济时代下的基础性资源和战略性资源&#xff0c;是决定国家经济发展水平和竞争力的核心驱动力。以行业…

Python自动化面试通关秘籍

Python自动化测试工程师面试&#xff0c;不仅仅是考察你的代码能力&#xff0c;更看重你如何在项目中灵活运用工具和框架解决实际问题。如果你正准备面试&#xff0c;这篇文章将为你总结最常见的高频考题及答题技巧&#xff0c;帮助你快速上手&#xff0c;通关面试&#xff0c;…

Logstash开启定时任务增量同步mysql数据到es的时区问题

本文使用修改时间modify_date作为增量同步检测字段&#xff0c;可检测新增和修改&#xff0c;检测不到删除&#xff0c;检测删除请使用canal查询binlog日志同步数据 检测修改时间字段为varchar的时候可以先创建索引&#xff0c;并设置对应的mapping为&#xff08;可以无视时区…

如何使用 FastAPI 构建 MCP 服务器

哎呀&#xff0c;各位算法界的小伙伴们&#xff01;今天咱们要聊聊一个超酷的话题——MCP 协议&#xff01;你可能已经听说了&#xff0c;Anthropic 推出了这个新玩意儿&#xff0c;目的是让 AI 代理和你的应用程序之间的对话变得更顺畅、更清晰。不过别担心&#xff0c;为你的…

【Git】-- 处理 Git 提交到错误分支的问题

如果你不小心把本应提交到 test 分支的代码提交到了 master 分支&#xff08;但尚未 push&#xff09;&#xff0c;可以按照以下步骤解决&#xff1a; 方法一&#xff08;推荐&#xff09;&#xff1a;使用 git reset 和 git stash 首先&#xff0c;确保你在 master 分支&…

通用目标检测技术选型分析报告--截止2025年4月

前言 本文撰写了一份关于通用目标检测&#xff08;General Object Detection&#xff09;的技术选型分析报告&#xff0c;覆盖2000至2025年技术演进历程&#xff0c;重点纳入YOLO-World、RT-DETR、Grounding DINO等2024-2025年的最新模型。 报告将包括技术定义、行业现状、技…

链路追踪Skywalking

一、什么是Skywalking 分布式链路追踪的一种方式&#xff1a;Spring Cloud SleuthZipKin&#xff0c;这种方案目前也是有很多企业在用&#xff0c;但是作为程序员要的追逐一些新奇的技术&#xff0c;Skywalking作为后起之秀也是值得大家去学习的。 Skywalking是一个优秀的国产…

websocket获取客服端真实ip

在websocket建立连接时,获取访问客户端的真实ip 1. websocket建立连接过程 2. pom依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-websocket</artifactId></dependency>3. 添加配置,握…

NSSCTF(MISC)—[justCTF 2020]pdf

相应的做题地址&#xff1a;https://www.nssctf.cn/problem/920 binwalk分离 解压文件2AE59A.zip mutool 得到一张图片 B5F31内容 B5FFD内容 转换成图片 justCTF{BytesAreNotRealWakeUpSheeple}

部分国产服务器CPU及内存性能测试情况

近日对部分国产服务器进行了CPU和内存的性能测试&#xff0c; 服务器包括华锟振宇、新华三和中兴三家&#xff0c;CPU包括鲲鹏、海光和Intel&#xff0c;初步测试结果如下&#xff1a; 服务器厂商四川华锟振宇新华三中兴中兴服务器HuaKun TG225 B1R4930 G5R5930 G2R5300 G4操作…

【无标题】Scala函数基础

函数和方法的区别 1&#xff09; 核心概念 &#xff08;1&#xff09; 为完成某一功能的程序语句的集合&#xff0c;称为函数。 &#xff08;2&#xff09; 类中的函数称之方法。 2&#xff09; 案例实操 &#xff08;1&#xff09; Scala 语言可以在任何的语法结构中声明…

uniapp -- 列表垂直方向拖拽drag组件

背景 需要在小程序中实现拖拽排序功能,所以就用到了m-drag拖拽组件,在开发的过程中,发现该组件在特殊的场景下会有些问题,并对其进行了拓展。 效果 组件代码 <template><!-- 创建一个垂直滚动视图,类名为m-drag --><scroll

conda安装python 遇到 pip is configured with locations that require TLS/SSL问题本质解决方案

以前写了一篇文章&#xff0c;不过不是专门为了解决这个问题的&#xff0c;但是不能访问pip install 不能安装来自https 协议的包问题几乎每次都出现&#xff0c;之前解决方案只是治标不治本 https://blog.csdn.net/wangsenling/article/details/130194456​​​​​​​https…

【初阶数据结构】队列

文章目录 目录 一、概念与结构 二、队列的实现 队列的定义 1.初始化 2.入队列 3.判断队列是否为空 4.出队列 5.取队头数据 6.取队尾数据 7.队列有效个数 8.销毁队列 三.完整源码 总结 一、概念与结构 概念&#xff1a;只允许在一端进行插入数据操作&#xff0c;在另一端进行删除…