関数型インターフェース
java.util.functionパッケージの基本となる4つのインターフェース+α
(Java Gold SE8 対策)
4つの基本型とそれぞれのプリミティブ特殊化型
Supplier<T>
(IntSupplier / LongSupplier / DoubleSupplier /BooleanSupplier)
Predicate<T>
(IntPrediate / LongPredicate / DoublePredicate)
Consumer<T>
(IntConsumer / LongConsumer DoubleConsumer)
Function<T,R>
(IntFunction<R> / LongFunction<R> /DoubleFunction<R>)
(Java Gold SE8 対策)
4つの基本型とそれぞれのプリミティブ特殊化型
Supplier<T>
(IntSupplier / LongSupplier / DoubleSupplier /BooleanSupplier)
Predicate<T>
(IntPrediate / LongPredicate / DoublePredicate)
Consumer<T>
(IntConsumer / LongConsumer DoubleConsumer)
Function<T,R>
(IntFunction<R> / LongFunction<R> /DoubleFunction<R>)
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ku | 4901 | B | 4.9 | 98.5% | 55.9 | 278 | 4 | 10 | 2024/11/02 |
2 | まーくん | 2568 | E | 2.6 | 97.2% | 105.1 | 278 | 8 | 10 | 2025/01/03 |
関連タイピング
-
プレイ回数33万1071打
-
プレイ回数2.4万英語長文759打
-
プレイ回数3303英語長文300秒
-
プレイ回数96英語短文159打
-
プレイ回数682長文590打
-
プレイ回数145760秒
-
プレイ回数366長文記号201打
-
プレイ回数1776短文英字429打
問題文
ふりがな非表示
ふりがな表示
(supplier<t> t get())
Supplier<T> T get()
(predicate<t> boolean test(t t))
Predicate<T> boolean test(T t)
(consumer<t> void accept(t t))
Consumer<T> void accept(T t)
(function<t,r> r apply(t t))
Function<T,R> R apply(T t)
(bifunction<t,u,r> r apply(t t, u u))
BiFunction<T,U,R> R apply(T t, U u)
(unaryoperator<t> t apply(t t))
UnaryOperator<T> T apply(T t)
(binaryoperator<t> t apply(t t, t t))
BinaryOperator<T> T apply(T t, T t)
(runnable void run())
Runnable void run()
(comparator<t> int compare(t o1, t o2))
Comparator<T> int compare(T o1,T o2)
(callable<v> v call())
Callable<V> V call()