溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java怎么簡(jiǎn)化條件表達(dá)式

發(fā)布時(shí)間:2022-06-10 09:22:35 來源:億速云 閱讀:120 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“Java怎么簡(jiǎn)化條件表達(dá)式”,在日常操作中,相信很多人在Java怎么簡(jiǎn)化條件表達(dá)式問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Java怎么簡(jiǎn)化條件表達(dá)式”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

一個(gè)實(shí)際例子

@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;
}

上面的例子是一個(gè)文件下載功能。我們根據(jù)用戶需要下載Excel、CSV或TXT文件。下載之前需要做一些合法性判斷,比如驗(yàn)證用戶權(quán)限,驗(yàn)證請(qǐng)求文件的格式。

使用斷言

在上面的例子中,有四層嵌套。但是最外層的兩層嵌套是為了驗(yàn)證參數(shù)的有效性。只有條件為真時(shí),代碼才能正常運(yùn)行??梢允褂脭嘌?code>Assert.isTrue()。如果斷言不為真的時(shí)候拋出RuntimeException。(注意要注明會(huì)拋出異常,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();
    }
}

可以看出在使用斷言之后,代碼的可讀性更高了。代碼可以分成兩部分,一部分是參數(shù)校驗(yàn)邏輯,另一部分是文件下載功能。

表驅(qū)動(dòng)

斷言可以優(yōu)化一些條件表達(dá)式,但還不夠好。我們?nèi)匀恍枰ㄟ^判斷filetype屬性來確定要下載的文件格式。假設(shè)現(xiàn)在需求有變化,需要支持word格式文件的下載,那我們就需要直接改這塊的代碼,實(shí)際上違反了開閉原則。

表驅(qū)動(dòng)可以解決這個(gè)問題。

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();
    }
}

可以看出在使用了表驅(qū)動(dòng)之后,如果想要新增類型,只需要在map中新增一個(gè)key-value就可以了。

使用枚舉

除了表驅(qū)動(dòng),我們還可以使用枚舉來優(yōu)化條件表達(dá)式,將各種邏輯封裝在具體的枚舉實(shí)例中。這同樣可以提高代碼的可擴(kuò)展性。其實(shí)Enum本質(zhì)上就是一種表驅(qū)動(dòng)的實(shí)現(xiàn)。(kotlin中可以使用sealed class處理這個(gè)問題,只不過具實(shí)現(xiàn)方法不太一樣)

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();
    }
}

策略模式

我們還可以使用策略模式來簡(jiǎn)化條件表達(dá)式,將不同文件格式的下載處理抽象成不同的策略類。

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);
    }
}

到此,關(guān)于“Java怎么簡(jiǎn)化條件表達(dá)式”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI