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() ..

[Spring] STS3 Darkest Dark Theme 설치 (에러 해결)
Language/Java 2024. 6. 11. 02:42 [Spring] STS3 Darkest Dark Theme 설치 (에러 해결)

Cannot complete the install because some dependencies are not satisfiable   Software being installed: a.jre.javase 10.0.0   Software currently installed: Spring Tool Suite 3.9.18.202109140905-RELEASE-e421 (org.springsource.sts.ide 3.9.18.202109140905-RELEASE-e421)   Cannot satisfy dependency:     From: Spring Tool Suite 3.9.18.202109140905-RELEASE-e421 (org.springsource.sts.ide 3.9.18.2021091409..

[Spring] STS에서 Tomcat 서버 연결
Language/Java 2024. 6. 11. 00:36 [Spring] STS에서 Tomcat 서버 연결

🚀 개발 환경▪  IDE : STS 3.9.18▪  WAS : Apache Tomcat v9.0.89   1. 😽 톰캣 (Apache Tomcat) 설치 💾 Apache Tomcat v9.0.89의 Core zip 설치 Apache Tomcat® - Apache Tomcat 9 Software DownloadsWelcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Unsure which versi..

image