Java 유틸에서 Random 함수를 쓸때,
특정 범위까지 랜덤구하는 방법을 간단하게 구현해놓았다.
//1. nextInt(range) = nextInt(max - min)
new Random().nextInt(5); // [0...4] [min = 0, max = 4]
new Random().nextInt(6); // [0...5]
new Random().nextInt(7); // [0...6]
new Random().nextInt(8); // [0...7]
new Random().nextInt(9); // [0...8]
new Random().nextInt(10); // [0...9]
new Random().nextInt(11); // [0...10]
참고 : https://www.mkyong.com/java/java-generate-random-integers-in-a-range/
반응형
'Dev > Java' 카테고리의 다른 글
[Sunday Study] RxJava (0) | 2018.02.11 |
---|---|
디자인 패턴 - Strategy Pattern (0) | 2018.01.02 |
for문에서 변수명 이렇게 쓰지마라!! (0) | 2017.11.14 |
[Java] static 과 final 이해하기 (0) | 2017.07.19 |
인스턴스 변수, 메서드 / 클래스 변수, 메서드 (0) | 2015.02.17 |