jdk 8 lambda 상용 흐름 조작
7215 단어 Java
/**
*
*/
package com.lambdasTest.stream;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.function.BinaryOperator;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* jdk8 lambda stream
*
* @Date Oct 23, 2017 12:27:17 PM
*/
public class StreamOfLambdas {
public static void main(String[] agrs) {
// collect(toList())
List collected = Stream.of("a", "b", "c", "d").collect(Collectors.toList());
System.out.println(collected); // [a, b, c, d]
System.out.println(Arrays.asList("a", "b", "c", "d")); //[a, b, c, d]
// map
collected = Stream.of("a", "b", "hEllo").map(string -> string.toUpperCase()).collect(Collectors.toList());
System.out.println(collected); // [A,B,HELLO]
// filter
List beginningWithNumbers = Stream.of("a", "1abc", "5acs").filter(value -> isDigit(value.charAt(0))).collect(Collectors.toList());
System.out.println("filter: " + beginningWithNumbers); // [1abc, 5acs]
// flatmap Stream , Stream Stream
List together = Stream.of(Arrays.asList(1, 2), Arrays.asList(3, 4)).flatMap(numbers -> numbers.stream()).collect(Collectors.toList());
System.out.println(together); // [1, 2, 3, 4]
// min and max
List tracks = Arrays.asList(new Track("bakai", 524), new Track("Vlolets for your furs", 373), new Track("Time was", 451));
Track shortestTrack = tracks.stream().min(Comparator.comparing(track->track.getLength())).get();
System.out.println(shortestTrack.getName().toString() + shortestTrack.getLength()); // Vlolets for your furs373
// reduce
int count = Stream.of(1, 2, 3).reduce(0, (acc, element) -> acc + element);
System.out.println(count); //6
BinaryOperator accumulator = (acc, element) -> acc + element;
count = accumulator.apply(accumulator.apply(accumulator.apply(0, 1), 2), 3);
System.out.println(count); //6
}
public static boolean isDigit(char c) {
return (int) c >= 48 && (int) c <= 57;
}
}
class Track {
private String name;
private int length;
/**
* @param name
*
* @param length
*
*/
public Track(final String name, final int length) {
super();
this.name = name;
this.length = length;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the length
*/
public int getLength() {
return length;
}
/**
* @param length
* the length to set
*/
public void setLength(int length) {
this.length = length;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.