-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAula7.java
47 lines (36 loc) · 1.09 KB
/
Aula7.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
*
* @author code36u4r60
*/
public class Aula7 {
interface Num {
double getValue();
}
interface ValorNumerico {
boolean teste(int n);
}
interface ValorNumerico2 {
boolean teste(int n, int n2);
}
public static void main(String[] args) {
// Expressão lambda utilizada como uma constante
Num n;
n = () -> 333.11;
System.out.println(n.getValue());
// Utilização da classe math com a estrutura lambda
Num n2 = () -> Math.random() * 100;
System.out.println(n2.getValue());
System.out.println(n2.getValue());
ValorNumerico isPar = (int i) -> (i % 2) == 0;
System.out.println(isPar.teste(89));
System.out.println(isPar.teste(90));
ValorNumerico2 isDiv = (x, y) -> (x % y) == 0;
System.out.println(isDiv.teste(10, 2));
System.out.println(isDiv.teste(10, 3));
ValorNumerico expressao1 = i -> (i % 2) == 0;
ValorNumerico2 expressao2 = (int x, int y) -> {
int w = x + y;
return w > 1000;
};
}
}