Java 코테에 사용되는 method들

Peace·2022년 2월 8일
0

String to int

Integer.parseInt(int);

int to String

Intger.toString(string)

Collections

Collections Sort

Collections.sort(값, Comparator)
기본은 오름차순, Collections.reverseOrder()를 사용하면 내림차순

custom하면 comparator class의 compare를 overriding해주면 된다.
int compare(Object o1, Object o2){}
음수면, o1이 앞, 양수면 o2가 앞이다.

collections fill

원하는 값으로 채울때 사용
Collections.fill(List list, T obj);

Max, Min

Math.max(), Math.min()

문자열

String str = "010-0000-1234"
String[] num = str.split("-");

ArrayList를 array로 변경

list.stream().mapToInt(i->i).toArray();
list.stream().mapToInt(Integer::intValue).toArray();

계속 업데이트 할 예정

profile
https://peace-log.tistory.com 로 이사 중

0개의 댓글