[Stream] 스트림 중간처리와 최종 연산 : mapToInt(), average()
스트림으로 보낼 축구선수객체를 생성하는 클래스 속성 : 선수이름, 슈팅지수 public class SoccerPlayer { private String name; private int shooting; // 슈팅지수 public SoccerPlayer(String name, int shooting) { this.name = name; this.shooting = shooting; } public int getShooting() { return shooting; } } import java.util.Arrays; import java.util.List; public class MapToIntAndAverage { public static void main(String[] args) { SoccerPlaye..
Java
2020. 6. 16. 15:04