详解Java如何简化条件表达式
目录
- 一个实际例子
- 使用断言
- 表驱动
- 使用枚举
- 策略模式
面对这种情况,简化判断逻辑就是不得不做的事情,下面介绍几种方法。
一个实际例子
@GetMapping("/exportOrderRecords")public void downloadFile(User user, HttpServletResponse response) {if (user != null) {if (!StringUtils.isBlank(user.role) && authenticate(user.role)) {String fileType = user.getFileType(); // 获得文件类型if (!StringUtils.isBlank(fileType)) {if (fileType.equalsIgnoreCase("csv")) {doDownloadCsv(); // 不同类型文件的下载策略} else if (fileType.equalsIgnoreCase("excel")) {doDownloadExcel(); // 不同类型文件的下载策略} else {doDownloadTxt(); // 不同类型文件的下载策略}} else {doDownloadCsv(); }}}}public class User {private String username; private String role; private String fileType; }
【详解Java如何简化条件表达式】上面的例子是一个文件下载功能。我们根据用户需要下载Excel、CSV或TXT文件。下载之前需要做一些合法性判断,比如验证用户权限,验证请求文件的格式。
使用断言 在上面的例子中,有四层嵌套。但是最外层的两层嵌套是为了验证参数的有效性。只有条件为真时,代码才能正常运行。可以使用断言
Assert.isTrue()
。如果断言不为真的时候抛出RuntimeException
。(注意要注明会抛出异常,kotlin中也一样)@GetMapping("/exportOrderRecords")public void downloadFile(User user, HttpServletResponse response) throws Exception {Assert.isTrue(user != null, "the request body is required!"); Assert.isTrue(StringUtils.isNotBlank(user.getRole()), "download file is for"); Assert.isTrue(authenticate(user.getRole()), "you do not have permission to download files"); String fileType = user.getFileType(); if (!StringUtils.isBlank(fileType)) {if (fileType.equalsIgnoreCase("csv")) {doDownloadCsv(); } else if (fileType.equalsIgnoreCase("excel")) {doDownloadExcel(); } else {doDownloadTxt(); }} else {doDownloadCsv(); }}
可以看出在使用断言之后,代码的可读性更高了。代码可以分成两部分,一部分是参数校验逻辑,另一部分是文件下载功能。
表驱动 断言可以优化一些条件表达式,但还不够好。我们仍然需要通过判断
filetype
属性来确定要下载的文件格式。假设现在需求有变化,需要支持word格式文件的下载,那我们就需要直接改这块的代码,实际上违反了开闭原则。表驱动可以解决这个问题。
private HashMap map = new HashMap<>(); public Demo() {map.put("csv", response -> doDownloadCsv()); map.put("excel", response -> doDownloadExcel()); map.put("txt", response -> doDownloadTxt()); }@GetMapping("/exportOrderRecords")public void downloadFile(User user, HttpServletResponse response) {Assert.isTrue(user != null, "the request body is required!"); Assert.isTrue(StringUtils.isNotBlank(user.getRole()), "download file is for"); Assert.isTrue(authenticate(user.getRole()), "you do not have permission to download files"); String fileType = user.getFileType(); Consumer consumer = map.get(fileType); if (consumer != null) {consumer.accept(response); } else {doDownloadCsv(); }}
可以看出在使用了表驱动之后,如果想要新增类型,只需要在map中新增一个key-value就可以了。
使用枚举 除了表驱动,我们还可以使用枚举来优化条件表达式,将各种逻辑封装在具体的枚举实例中。这同样可以提高代码的可扩展性。其实Enum本质上就是一种表驱动的实现。(kotlin中可以使用sealed class处理这个问题,只不过具实现方法不太一样)
public enum FileType {EXCEL(".xlsx") {@Overridepublic void download() {}},CSV(".csv") {@Overridepublic void download() {}},TXT(".txt") {@Overridepublic void download() {}}; private String suffix; FileType(String suffix) {this.suffix = suffix; }public String getSuffix() {return suffix; }public abstract void download(); }@GetMapping("/exportOrderRecords")public void downloadFile(User user, HttpServletResponse response) {Assert.isTrue(user != null, "the request body is required!"); Assert.isTrue(StringUtils.isNotBlank(user.getRole()), "download file is for"); Assert.isTrue(authenticate(user.getRole()), "you do not have permission to download files"); String fileType = user.getFileType(); FileType type = FileType.valueOf(fileType); if (type!=null) {type.download(); } else {FileType.CSV.download(); }}
策略模式 我们还可以使用策略模式来简化条件表达式,将不同文件格式的下载处理抽象成不同的策略类。
public interface FileDownload{boolean support(String fileType); void download(String fileType); }public class CsvFileDownload implements FileDownload{@Overridepublic boolean support(String fileType) {return"CSV".equalsIgnoreCase(fileType); }@Overridepublic void download(String fileType) {if (!support(fileType)) return; // do something}}public class ExcelFileDownload implements FileDownload {@Overridepublic boolean support(String fileType) {return"EXCEL".equalsIgnoreCase(fileType); }@Overridepublic void download(String fileType) {if (!support(fileType)) return; //do something}}@Autowiredprivate ListfileDownloads; @GetMapping("/exportOrderRecords")public void downloadFile(User user, HttpServletResponse response) {Assert.isTrue(user != null, "the request body is required!"); Assert.isTrue(StringUtils.isNotBlank(user.getRole()), "download file is for"); Assert.isTrue(authenticate(user.getRole()), "you do not have permission to download files"); String fileType = user.getFileType(); for (FileDownload fileDownload : fileDownloads) {fileDownload.download(fileType); }}
到此这篇关于详解Java如何简化判断逻辑的文章就介绍到这了,更多相关Java简化判断逻辑内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- Clojure|Clojure 与Java对比少数据结构多函数胜过多个单独类的优点
- #yyds干货盘点# Java 并发 - 线程基础
- Renix 如何配置DHCPv4 relay场景测试——网络测试仪实操
- 如何解析EML(邮件)格式的文件以及一款小巧的EML邮件阅读工具
- 笔记|Java实习面试题
- java面试题|java面试题 java8新特性_【Java8新特性】面试官问我(Java8中创建Stream流有哪几种方式(...))
- 技术面试问项目难题如何解决的_技术面试感觉什么都会,面试官一问回答不上来怎么办(...)
- java|Java 中的超快微服务( 当Microstream遇上Open Liberty)
- 程序员|Java开发面试题!java基础知识梳理
- 开发者如何调整设计系统以适用于元宇宙()