kotlin-stdlib / kotlin.concurrent / thread
thread
JVM

fun thread(
    start: Boolean = true,
    isDaemon: Boolean = false,
    contextClassLoader: ClassLoader? = null,
    name: String? = null,
    priority: Int = -1,
    block: () -> Unit
): Thread

Creates a thread that runs the specified block of code.
	/ block(関数)を、実行する スレッド を、生成します.
	


        --------------------------------------------------------------------------------



public class Thread
extends Object
implements Runnable
  A thread is a thread of execution in a program.
  The Java Virtual Machine allows
  an application to have multiple threads of execution running concurrently.
    / スレッドはプログラム内の実行スレッドです。
    / Java仮想マシンにより、アプリケーションは複数の実行スレッドを同時に実行することができます。
    (Google自動翻訳)