This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface TouchCallback { | |
public void apply(int times); | |
} | |
class TouchMe { | |
private int times = 0; | |
private TouchCallback onTouch; | |
TouchMe(TouchCallback onTouch) { | |
this.onTouch = onTouch; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Sum { | |
public static void main(String args[]) { | |
int[] array = new int[]{1, 2, 3, 4, 5}; | |
int sum = 0; | |
for (int item: array) { | |
sum += item; | |
} | |
System.out.println(sum); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
public class StreamForEach { | |
public static void main(String args[]) { | |
int[] array = new int[]{1, 2, 3, 4, 5}; | |
Arrays.stream(array) | |
.forEach(item -> System.out.println("item: " + item)); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
public class StreamSum { | |
public static void main(String args[]) { | |
int[] array = new int[]{1, 2, 3, 4, 5}; | |
int sum = Arrays.stream(array).sum(); | |
System.out.println(sum); | |
} | |
} |
NewerOlder