您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Java如何使用Stream優化if中判斷條件過多情況,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Jdk1.8新特性Stream流有三個這樣API,anyMatch,allMatch,noneMatch,各自的作用如下:
anyMatch:判斷條件里任意一個滿足條件,則返回true;
allMatch:判斷條件里所有都滿足條件,則返回true;
noneMatch:判斷條件里所有都不滿足條件,則返回true;
它們的使用方式其實很簡單:
List<String> list = Arrays.asList("a", "b", "c","d", ""); //任意一個字符串判斷不為空則為true boolean anyMatch = list.stream().anyMatch( s->StringUtils.isEmpty(s)); //所有字符串判斷都不為空則為true boolean allMatch = list.stream().allMatch( s->StringUtils.isEmpty(s)); //沒有一個字符判斷為空則為true boolean noneMatch = list.stream().noneMatch( s->StringUtils.isEmpty(s));
可見,根據以上三種實現方式,可以在某種程度上優化if里判斷條件過多的情況,那么,在哪種場景里比較合適利用其優化呢?
在日常實際開發當中,我們可能會看到過這樣存在很多判斷條件的代碼:
if(StringUtils.isEmpty(str1) || StringUtils.isEmpty(str2) || StringUtils.isEmpty(str3) || StringUtils.isEmpty(str4) || StringUtils.isEmpty(str5) || StringUtils.isEmpty(str6) ){ ..... }
這時,就可以考慮到,使用stream流來優化,優化后的代碼如下:
if(Stream.of(str1, str2, str3, str4,str5,str6).anyMatch(s->StringUtils.isEmpty(s))){ ..... }
這樣優化后,是不是就比那堆if里堆積到一塊的條件更為優雅了?
當然,這只是針對或條件的,若是遇到與條件時,同樣可以用Stream來優化,例如:
if(StringUtils.isEmpty(str1) && StringUtils.isEmpty(str2) && StringUtils.isEmpty(str3) && StringUtils.isEmpty(str4) && StringUtils.isEmpty(str5) && StringUtils.isEmpty(str6) ){ ..... }
使用Stream優化后:
if(Stream.of(str1, str2, str3, str4,str5,str6).allMatch(s->StringUtils.isEmpty(s))){ ..... }
關于“Java如何使用Stream優化if中判斷條件過多情況”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。