Hello World!
Spread your wide wings 
with Java
Kotlin 랜덤 숫자 (난수) 생성
Language/Kotlin 2024. 7. 17. 16:13 Kotlin 랜덤 숫자 (난수) 생성

Kotlin에서의 랜덤 숫자 (난수) 생성 방법을 소개한다.   1. kotlin.random.Random Kotlin 표준 라이브러리에서 제공하는 난수 생성 클래스로 nextInt(), nextLong(), nextDouble() 등의 메서드를 사용하여 다양한 타입의 난수를 생성할 수 있다.* 매개변수로 난수 범위 지정 가능package com.example.kotlinsyntaximport kotlin.random.Randomfun main() { // -2,147,483,648    2. java.util.Random java.util.Random 클래스는 Java 표준 라이브러리에서 제공되며 Kotlin에서도 사용할 수 있다. nextInt(), nextLong(), nextDouble() ..

image