JDK8 Lambda その他いろいろ なんでもいいから動かしてみる その4
今日もちょこっとだけ JDK8 の新機能と戯れてみます。
昨日はロレックスの売買を全て表示させてみました。
今日は一番若い買い手を表示させてみます。
mylambdaexamples\MyLambdaExamples.java |
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
// 一番若い買い手を表示 System.out.println("\n<-- 一番若い買い手を表示 -->"); Optional<List<Sale>> byYoungest; ToIntFunction<Entry<Person, List<Sale>>> byAge; byAge = e -> e.getKey().getAge(); byYoungest = sales.collect(groupingBy(Sale::getBuyer)) .entrySet() .stream() .sorted(comparing(byAge)) .map(Entry::getValue) .findFirst(); if (byYoungest.isPresent()) { System.out.println((byYoungest.get().get(0).buyer.getFirstName() + " " + byYoungest.get().get(0).buyer.getLastName() + ", " + byYoungest.get().get(0).buyer.getAge() + "歳")); } |
Optional , ToIntFunction , groupingBy() , findFirst() , isPresent() など見たことのないものが出現しました。
Optional は JavaDoc では下記のように説明されてます。
public final class Optional<T> extends Object
A container object which may or may not contain a non-null value. If a value is present, isPresent()
will return true
and get()
will return the value.
Additional methods that depend on the presence or absence of a contained value are provided, such as orElse() (return a default value if value not present) and ifPresent()
(execute a block of code if the value is present).
日付:
1.8
英語なので良く解りません。(>_<。)
isPresent() メソッドと get() メソッドで操作される便利なパブリックでファイナルなクラスのようですね。(なんじゃこりゃ!)
ToIntFunction は JavaDoc ではどのように説明されてるのかみてみましょう。
@FunctionalInterface
public interface ToIntFunction<T>
Apply a function to the input argument, yielding an appropriate result. This is the int
-bearing specialization for Function.
パラメータ:
T
– the type of input objects to the function
日付:
1.8
参照:
当然これも英語ですね。
@ FunctionalInterface となってます。
ToIntFunction <T>が、適切な結果をもたらして、関数を変数に適用します。
これは関数のために int を生む専門化です。
なんか解ったような解らないような・・・
残りの見慣れないものも調べてみましょう。
groupingBy()
java.util.stream.Collectors
public static <T,K> Collector<T,Map<K,List<T>>> groupingBy(Function<? super T,? extends K> classifier)
Returns a Collector
that implements a “group by” operation on input elements of type T
.
Accepts a classification function from T
to K
. The collector produces a Map
whose keys are the set of values resulting of applying the classification function to the input elements, and whose corresponding values are List
s containing the input elements which map to the associated key under the classification function.
No guarantees are made as to the type of the Map
or the type of the List
used for the map values.
パラメータ:
classifier
– The classifier function mapping input elements to keys
型パラメータ:
T
– The type of the input elementsK
– The type of the keys
戻り値:
A
Collector
implementing the group-by operation
public static <T,K> Collector<T,Map<K,List<T>>> groupingBy(Function<? super T,? extends K> classifier)が
Tのインプット要素に関して「通り過ぎて分類する」命令を実装するコレクタをリターンするリストがTからKまで分類関数を受け入れます。
コレクタはそのキーが、分類機能をインプット要素に適用することについて、結果として生じる値である、
そしてその対応する値が分類ファンクションの下で提携させられたキーにマップするインプット要素を含んでいるリストであるマップを作成します。
保証がマップの値のために使われるタイプのマップあるいはリストのタイプについて作られません。
findFirst()
public Optional<T> findFirst()
Return an Optional describing the first element of this stream (in the encounter order), or an empty Optional
if the stream is empty.
This is a short-circuiting terminal operation.
戻り値:
もしストリームが空であるなら、このストリームの第1エレメント(遭遇するオーダー)、あるいは空の Optional を記述している Optional を返してください。
これは省いているターミナル操作です。
戻り値:
Optional が、もしストリームが空なら、このストリームの第1エレメント、あるいは空の Optional を記述します。
isPresent()
public boolean isPresent()
Return true
if there is a value present, otherwise false
.
戻り値:
true
if there is a value present, otherwisefalse
もし値が存在するならば真を、そうでないなら偽をを返してください。
以上 JavaDoc を調べてみました。
私が使ってる翻訳支援ソフトでは概ねこのように翻訳されました。
Java7 から日本語の JavaDoc がなくなって非常に残念です。
Java8 で日本語の JavaDoc の復活を熱く激しくもとめます。
では、これらのことを踏まえて今回のプログラムを実行させてみます。
<– 一番若い買い手を表示 –>
武井 咲, 19歳
おおっ!何が何だか良く解らんけどちゃんと正解が表示されました。(ヲヒ
詳しくは理解できないけどプログラムのコードと JavaDoc とを照らし合せてみると何となく理解できそうです。
でも、これってフィルタリングとソートでもいけそうな気が・・・
まだまだ新機能のメリットを理解しなければ・・・
それでは次回へ続く(まだ続くのか・・・)
TAGS: Java | 2013年4月5日7:28 PM
Trackback URL