您好,登錄后才能下訂單哦!
這篇文章主要介紹“Java怎么簡化條件表達式”,在日常操作中,相信很多人在Java怎么簡化條件表達式問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”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; }
上面的例子是一個文件下載功能。我們根據用戶需要下載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<String, Consumer> 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") { @Override public void download() { } }, CSV(".csv") { @Override public void download() { } }, TXT(".txt") { @Override public 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{ @Override public boolean support(String fileType) { return "CSV".equalsIgnoreCase(fileType); } @Override public void download(String fileType) { if (!support(fileType)) return; // do something } } public class ExcelFileDownload implements FileDownload { @Override public boolean support(String fileType) { return "EXCEL".equalsIgnoreCase(fileType); } @Override public void download(String fileType) { if (!support(fileType)) return; //do something } } @Autowired private List<FileDownload> fileDownloads; @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怎么簡化條件表達式”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。