|
|
|
@ -15,10 +15,7 @@ |
|
|
|
|
*/ |
|
|
|
|
package pkg; |
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Arrays; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.OptionalInt; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.function.IntBinaryOperator; |
|
|
|
|
import java.util.function.Supplier; |
|
|
|
|
|
|
|
|
@ -27,20 +24,19 @@ public class TestClassLambda { |
|
|
|
|
public int field = 0; |
|
|
|
|
|
|
|
|
|
public void testLambda() { |
|
|
|
|
|
|
|
|
|
List<Integer> list = Arrays.asList(1, 2, 3, 4, 5, 6, 7); |
|
|
|
|
int b = (int)Math.random(); |
|
|
|
|
|
|
|
|
|
list.forEach(n -> {int a = 2 * n; System.out.println(a + b + field);}); |
|
|
|
|
list.forEach(n -> { |
|
|
|
|
int a = 2 * n; |
|
|
|
|
System.out.println(a + b + field); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void testLambda1() { |
|
|
|
|
|
|
|
|
|
int a = (int)Math.random(); |
|
|
|
|
|
|
|
|
|
Runnable r = () -> { System.out.println("hello" + a); }; |
|
|
|
|
|
|
|
|
|
Runnable r1 = () -> { System.out.println("hello1" + a); }; |
|
|
|
|
Runnable r2 = () -> { System.out.println("hello2" + a); }; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void testLambda2() { |
|
|
|
@ -64,7 +60,7 @@ public class TestClassLambda { |
|
|
|
|
List<String> list = new ArrayList<String>(); |
|
|
|
|
int bottom = list.size() * 2; |
|
|
|
|
int top = list.size() * 5; |
|
|
|
|
list.removeIf( s -> (bottom >= s.length() && s.length() <= top) ); |
|
|
|
|
list.removeIf(s -> (bottom >= s.length() && s.length() <= top)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static OptionalInt reduce(IntBinaryOperator op) { |
|
|
|
@ -78,5 +74,4 @@ public class TestClassLambda { |
|
|
|
|
public static int localMax(int first, int second) { |
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|