関数型インターフェース

(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 | 5275 | B++ | 5.2 | 100% | 52.7 | 278 | 0 | 10 | 2025/04/06 |
2 | ぱぴぷ | 2199 | F+ | 2.2 | 96.1% | 121.4 | 278 | 11 | 10 | 2025/04/25 |
関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数35万1071打 -
競技プログラミングに特化したc++コードのタイピングです。
プレイ回数714英語長文300秒 -
タッチタイピングをマスターしたい方向けの問題です。
プレイ回数8450長文英字411打 -
タイピングをマスターしたい方向けの問題です。
プレイ回数7572長文英字326打 -
メソッド名やクラス名をタイピングしよう
プレイ回数146長文英字60秒 -
C言語を用いた記号・数字のタッチタイピング練習です。
プレイ回数1264英語長文220打 -
Pythonプログラミングのタイピング超入門です。
プレイ回数2599短文90秒 -
Javaプログラミングにおける超入門タイピング練習です.
プレイ回数3974短文英字90秒
問題文
(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()