comparator-with-boolean
boolean array๊ฐ ์์ ๋, natureOrder, reverseOrder๊ฐ ์ด๋ป๊ฒ ์ ๋ ฌ๋๋์ง ํ์ธ.
List<Boolean> booleans = Arrays.asList(Boolean.TRUE, Boolean.FALSE, Boolean.FALSE);
booleans.sort(Comparator.naturalOrder());
System.out.println(booleans); // [false, false, true]
List<Boolean> booleans = Arrays.asList(Boolean.TRUE, Boolean.FALSE, Boolean.FALSE);
booleans.sort(Comparator.reverseOrder());
System.out.println(booleans); // [true, false, false]
Last updated
Was this helpful?