Stream初體驗

最近在看《Java 8 in Action》,動手做了下5.5節(jié)的題目者蠕,Stream果然是一把利器陋率,是時候升級到Java 8了。

題目:

1. Find all transactions in the year 2011 and sort them by value (small to high).
2. What are all the unique cities where the traders work?
3. Find all traders from Cambridge and sort them by name.
4. Return a string of all traders’ names sorted alphabetically.
5. Are any traders based in Milan?
6. Print all transactions’ values from the traders living in Cambridge.
7. What’s the highest value of all the transactions?
8. Find the transaction with the smallest value.

代碼:

package java8.ch_five;

import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;

public class Test {

    /**
     * 答(非標(biāo)準(zhǔn)答案)
     * @param args
     */
    public static void main(String[] args) {
        List<Transaction> transactions = buildDomains();
        
        //1. Find all transactions in the year 2011 and sort them by value (small to high).
        List<Transaction> list1 = transactions.stream()
                    .filter(t -> t.getYear() == 2011)
                    .sorted((t1, t2) -> t1.getValue() - t2.getValue())
                    .collect(Collectors.toList());
        //2. What are all the unique cities where the traders work?
        List<String> list2 = transactions.stream()
                    .map(Transaction::getTrader)
                    .map(Trader::getCity)
                    .distinct()
                    .collect(Collectors.toList());
        //3. Find all traders from Cambridge and sort them by name.
        List<Trader> list3 = transactions.stream()
                    .map(Transaction::getTrader)
                    .filter(t -> t.getCity().equals("Cambridge"))
                    .sorted((t1, t2) -> t1.getName().compareTo(t2.getName()))
                    .collect(Collectors.toList());
        //4. Return a string of all traders’ names sorted alphabetically.
        String allTradersName = transactions.stream()
                    .map(Transaction::getTrader)
                    .map(Trader::getName)
                    .sorted()
                    .reduce((a, b) -> a + "-" + b)
                    .orElse("");
        //5. Are any traders based in Milan?
        boolean hasTraderInMilan = transactions.stream()
                    .anyMatch(t -> t.getTrader().getCity().equals("Milan"));
        //6. Print all transactions’ values from the traders living in Cambridge.
        List<Integer> list6 = transactions.stream()
                    .filter(t -> t.getTrader().getCity().equals("Cambridge"))
                    .map(Transaction::getValue)
                    .collect(Collectors.toList());
        //7. What’s the highest value of all the transactions?
        Integer maxValue = transactions.stream()
                    .map(Transaction::getValue)
                    .reduce(Integer::max)
                    .get();
        //8. Find the transaction with the smallest value.
        Transaction transaction = transactions.stream()
                    .reduce((a,b) -> a.getValue() < b.getValue() ? a : b)
                    .get();
        
        System.out.println(list1);
        System.out.println(list2);
        System.out.println(list3);
        System.out.println(allTradersName);
        System.out.println(hasTraderInMilan);
        System.out.println(list6);
        System.out.println(maxValue);
        System.out.println(transaction);
    }
    
    /**
     * 標(biāo)準(zhǔn)答案
     */
    public static void standardAnswer() {
        List<Transaction> transactions = buildDomains();
        
        //1. Find all transactions in the year 2011 and sort them by value (small to high).
        List<Transaction> list1 = transactions.stream()
                .filter(t -> t.getYear() == 2011)
                .sorted(Comparator.comparing(Transaction::getValue))
                .collect(Collectors.toList());
        //2. What are all the unique cities where the traders work?
        List<String> list2 = transactions.stream()
                .map(t -> t.getTrader().getCity())
                .distinct()
                .collect(Collectors.toList());
        //3. Find all traders from Cambridge and sort them by name.
        List<Trader> list3 = transactions.stream()
                .map(Transaction::getTrader)
                .filter(t -> t.getCity().equals("Cambridge"))
                .distinct()
                .sorted(Comparator.comparing(Trader::getName))
                .collect(Collectors.toList());
        //4. Return a string of all traders’ names sorted alphabetically.
        String allTradersName = transactions.stream()
                .map(t -> t.getTrader().getName())
                .sorted()
                .reduce("", (a, b) -> a + b);
        //5. Are any traders based in Milan?
        boolean hasTraderInMilan = transactions.stream()
                .anyMatch(t -> t.getTrader().getCity().equals("Milan"));
        //6. Print all transactions’ values from the traders living in Cambridge.
        transactions.stream()
                .filter(t -> t.getTrader().getCity().equals("Cambridge"))
                .map(Transaction::getValue)
                .forEach(System.out::println);
        //7. What’s the highest value of all the transactions?
        Integer maxValue = transactions.stream()
                .map(Transaction::getValue)
                .reduce(Integer::max)
                .get();
        //8. Find the transaction with the smallest value.
        Transaction transaction = transactions.stream()
                .reduce((a,b) -> a.getValue() < b.getValue() ? a : b)
                .get();
        
        System.out.println(list1);
        System.out.println(list2);
        System.out.println(list3);
        System.out.println(allTradersName);
        System.out.println(hasTraderInMilan);
        System.out.println(maxValue);
        System.out.println(transaction);
    }

    private static List<Transaction> buildDomains() {
        Trader raoul = new Trader("Raoul", "Cambridge");
        Trader mario = new Trader("Mario", "Milan");
        Trader alan = new Trader("Alan", "Cambridge");
        Trader brian = new Trader("Brian", "Cambridge");
        
        List<Transaction> transactions = Arrays.asList(
                new Transaction(brian, 2011, 300),
                new Transaction(raoul, 2012, 1000),
                new Transaction(raoul, 2011, 400),
                new Transaction(mario, 2012, 710),
                new Transaction(mario, 2012, 700),
                new Transaction(alan, 2012, 950)
                );
        return transactions;
    }
}

class Trader {

    private final String name;
    private final String city;

    public Trader(String n, String c) {
        this.name = n;
        this.city = c;
    }

    public String getName() {
        return this.name;
    }

    public String getCity() {
        return this.city;
    }

    public String toString() {
        return "Trader:" + this.name + " in " + this.city;
    }
}

class Transaction {

    private final Trader trader;
    private final int    year;
    private final int    value;

    public Transaction(Trader trader, int year, int value) {
        this.trader = trader;
        this.year = year;
        this.value = value;
    }

    public Trader getTrader() {
        return this.trader;
    }

    public int getYear() {
        return this.year;
    }

    public int getValue() {
        return this.value;
    }

    public String toString() {
        return "{" + this.trader + ", " + "year: " + this.year + ", " + "value:" + this.value + "}";
    }
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末杆勇,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子饱亿,更是在濱河造成了極大的恐慌蚜退,老刑警劉巖闰靴,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異钻注,居然都是意外死亡蚂且,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門幅恋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來杏死,“玉大人,你說我怎么就攤上這事捆交∈缫恚” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵品追,是天一觀的道長玄括。 經(jīng)常有香客問我,道長肉瓦,這世上最難降的妖魔是什么遭京? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮泞莉,結(jié)果婚禮上哪雕,老公的妹妹穿的比我還像新娘。我一直安慰自己鲫趁,他們只是感情好热监,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著饮寞,像睡著了一般孝扛。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上幽崩,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天苦始,我揣著相機(jī)與錄音,去河邊找鬼慌申。 笑死陌选,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蹄溉。 我是一名探鬼主播咨油,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼柒爵!你這毒婦竟也來了役电?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤棉胀,失蹤者是張志新(化名)和其女友劉穎法瑟,沒想到半個月后冀膝,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡霎挟,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年窝剖,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片酥夭。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡赐纱,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出熬北,到底是詐尸還是另有隱情疙描,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布蒜埋,位于F島的核電站,受9級特大地震影響最楷,放射性物質(zhì)發(fā)生泄漏整份。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一籽孙、第九天 我趴在偏房一處隱蔽的房頂上張望烈评。 院中可真熱鬧,春花似錦犯建、人聲如沸讲冠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽竿开。三九已至,卻和暖如春玻熙,著一層夾襖步出監(jiān)牢的瞬間否彩,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工嗦随, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留列荔,地道東北人。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓枚尼,卻偏偏與公主長得像贴浙,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子署恍,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理崎溃,服務(wù)發(fā)現(xiàn),斷路器盯质,智...
    卡卡羅2017閱讀 134,628評論 18 139
  • /Library/Java/JavaVirtualMachines/jdk-9.jdk/Contents/Home...
    光劍書架上的書閱讀 3,865評論 2 8
  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,734評論 25 707
  • 最近看了很多關(guān)于讀書的文章笨奠,談到了一年要看多少本書袭蝗,一個月要看多少本書,回想一下前段時間堅持收聽人民日報夜讀般婆,堅持...
    初因閱讀 121評論 0 0
  • 自去年七夕那天到腥,下班回家的公交車上被陌生人搭訕之后,每當(dāng)有陌生人跟我說話蔚袍,我都是盡量打手勢乡范。 可能是面相比...
    就讓我為遇見你伏筆_閱讀 155評論 0 0