Kotlin Coroutines(org.jetbrains.kotlinx:kotlinx-coroutines-core)の依存関係追加

Kotlinのスレッド処理は、コルーチン(Coroutines)の使用がおすすめのようです。
Coroutines guide

早速サンプルを実行してみようと思ったのですがビルドエラーになります。
Kotlinの標準ライブラリではないので、依存関係の指定が追加で必要でした。
初学者で地味に困ったので依存関係の追加方法をメモしておきます。

環境はこちらの手順で作成したものになります。
Kotlin + VS Code + Ubuntu 24.04での実行環境作成


build.gradle.kts


まずファイルのパスがわからず苦戦したのですが、依存関係を記載しているファイルは
app/build.gradle.ktsになります。

dependenciesにCoroutinesの依存関係を追記します。

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")



app/build.gradle.kts全体は以下のようになりました。

  1. /*
  2. * This file was generated by the Gradle 'init' task.
  3. *
  4. * This generated file contains a sample Kotlin application project to get you started.
  5. * For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.11.1/userguide/building_java_projects.html in the Gradle documentation.
  6. */
  7. plugins {
  8.     // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
  9.     alias(libs.plugins.kotlin.jvm)
  10.     // Apply the application plugin to add support for building a CLI application in Java.
  11.     application
  12. }
  13. repositories {
  14.     // Use Maven Central for resolving dependencies.
  15.     mavenCentral()
  16. }
  17. dependencies {
  18.     // Use the Kotlin JUnit 5 integration.
  19.     testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
  20.     // Use the JUnit 5 integration.
  21.     testImplementation(libs.junit.jupiter.engine)
  22.     testRuntimeOnly("org.junit.platform:junit-platform-launcher")
  23.     // This dependency is used by the application.
  24.     implementation(libs.guava)
  25.     // Coroutinesを使用するため、以下の行を追記
  26.     implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
  27. }
  28. // Apply a specific Java toolchain to ease working on different environments.
  29. java {
  30.     toolchain {
  31.         languageVersion = JavaLanguageVersion.of(21)
  32.     }
  33. }
  34. application {
  35.     // Define the main class for the application.
  36.     mainClass = "org.example.AppKt"
  37. }
  38. tasks.named<Test>("test") {
  39.     // Use JUnit Platform for unit tests.
  40.     useJUnitPlatform()
  41. }





サンプルプログラム


サンプルプログラムをそのまま実行してみます。

  1. package org.example
  2. import kotlinx.coroutines.*
  3. fun main() = runBlocking { // this: CoroutineScope
  4.     launch { // launch a new coroutine and continue
  5.         delay(1000L) // non-blocking delay for 1 second (default time unit is ms)
  6.         println("World!") // print after delay
  7.     }
  8.     println("Hello") // main coroutine continues while a previous one is delayed
  9. }



ビルドが成功し、実行結果が表示されました。

Hello
World!



Kotlinを使用している方には当たり前の内容だと思いますが、備忘録としてメモしておきます。

関連記事

コメント

プロフィール

Author:symfo
blog形式だと探しにくいので、まとめサイト作成中です。
https://symfo.web.fc2.com/

PR

検索フォーム

月別アーカイブ