تمت إعادة كتابة Stream API من Java 8 على أدوات التكرار لـ Java 7 والإصدارات الأقدم.
Supplier
، Function
، Consumer
، إلخ)؛Stream
/ IntStream
/ LongStream
/ DoubleStream
(بدون معالجة متوازية، ولكن مع مجموعة متنوعة من الأساليب الإضافية ومع عوامل التشغيل المخصصة)؛Optional
/ OptionalBoolean
/ OptionalInt
/ OptionalLong
/ OptionalDouble
؛Exceptional
- طريقة وظيفية للتعامل مع الاستثناءات؛Objects
من جافا 7 Stream . of ( /* array | list | set | map | anything based on Iterator/Iterable interface */ )
. filter (..)
. map (..)
...
. sorted ()
. forEach (..);
Stream . of ( value1 , value2 , value3 )...
IntStream . range ( 0 , 10 )...
مثال للمشروع: https://github.com/aNNiMON/Android-Java-8-Stream-Example
على عكس تدفقات Java 8، يوفر Lightweight-Stream-API القدرة على تطبيق عوامل تشغيل مخصصة.
Stream . of (...)
. custom ( new Reverse <>())
. forEach (...);
public final class Reverse < T > implements UnaryOperator < Stream < T >> {
@ Override
public Stream < T > apply ( Stream < T > stream ) {
final Iterator <? extends T > iterator = stream . getIterator ();
final ArrayDeque < T > deque = new ArrayDeque < T >();
while ( iterator . hasNext ()) {
deque . addFirst ( iterator . next ());
}
return Stream . of ( deque . iterator ());
}
}
يمكنك العثور على المزيد من الأمثلة هنا.
بالإضافة إلى مشغلي Java 8 Stream الخلفيين، توفر المكتبة ما يلي:
filterNot
- عامل filter
المُلغى
// Java 8
stream . filter ((( Predicate < String >) String :: isEmpty ). negate ())
// LSA
stream . filterNot ( String :: isEmpty )
select
- يقوم بتصفية مثيلات الفئة المحددة
// Java 8
stream . filter ( Integer . class :: isInstance )
// LSA
stream . select ( Integer . class )
withoutNulls
- يقوم بتصفية العناصر غير الفارغة فقط
Stream . of ( "a" , null , "c" , "d" , null )
. withoutNulls () // [a, c, d]
sortBy
- الفرز حسب وظيفة المستخرج
// Java 8
stream . sorted ( Comparator . comparing ( Person :: getName ))
// LSA
stream . sortBy ( Person :: getName )
groupBy
- المجموعات حسب وظيفة المستخرج
// Java 8
stream . collect ( Collectors . groupingBy ( Person :: getName )). entrySet (). stream ()
// LSA
stream . groupBy ( Person :: getName )
chunkBy
- تيار الأقسام مرتبة حسب وظيفة المصنف
Stream . of ( "a" , "b" , "cd" , "ef" , "gh" , "ij" , "klmnn" )
. chunkBy ( String :: length ) // [[a, b], [cd, ef, gh, ij], [klmnn]]
sample
- تنبعث منها كل العناصر ن
Stream . rangeClosed ( 0 , 10 )
. sample ( 2 ) // [0, 2, 4, 6, 8, 10]
slidingWindow
- تتدفق الأقسام إلى قائمة ذات حجم ثابت وتنزلق فوق العناصر
Stream . rangeClosed ( 0 , 10 )
. slidingWindow ( 4 , 6 ) // [[0, 1, 2, 3], [6, 7, 8, 9]]
takeWhile
/ dropWhile
- تم تقديمه في Java 9، يحد/يتخطى الدفق بواسطة الوظيفة الأصلية
Stream . of ( "a" , "b" , "cd" , "ef" , "g" )
. takeWhile ( s -> s . length () == 1 ) // [a, b]
Stream . of ( "a" , "b" , "cd" , "ef" , "g" )
. dropWhile ( s -> s . length () == 1 ) // [cd, ef, g]
scan
- يطبق وظيفة التراكم بشكل متكرر ويعيد الدفق
IntStream . range ( 1 , 6 )
. scan (( a , b ) -> a + b ) // [1, 3, 6, 10, 15]
indexed
- تضيف فهرسًا إلى كل عنصر، والنتيجة هي IntPair
Stream . of ( "a" , "b" , "c" )
. indexed () // [(0 : "a"), (1 : "b"), (2 : "c")]
filterIndexed
/ mapIndexed
/ takeWhileIndexed
/ takeUntilIndexed
/ dropWhileIndexed
/ reduceIndexed
/ forEachIndexed
- التخصص المفهرس للمشغلين
Stream . of ( "a" , "b" , "c" )
. mapIndexed (( i , s ) -> s + Integer . toString ( i )) // [a0, b1, c2]
لا مزيد من المحاولة/التقاط القبيحة في تعبيرات لامدا.
// Java 8
stream . map ( file -> {
try {
return new FileInputStream ( file );
} catch ( IOException ioe ) {
return null ;
}
})
// LSA
stream . map ( Function . Util . safe ( FileInputStream :: new ))
قم بتنزيل أحدث إصدار أو احصل عليه عبر Maven:
< dependency >
< groupId >com.annimon</ groupId >
< artifactId >stream</ artifactId >
< version >1.2.2</ version >
</ dependency >
أو جرادل:
dependencies {
.. .
implementation ' com.annimon:stream:1.2.2 '
.. .
}
أو استخدم أحدث الميزات غير المطروحة مع JitPack.
يتضمن أيضًا إصدارًا لـ Java ME . الخروج من فرع جافامي.