0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kotlin 初心者とにかくアウトプットシリーズ args = argument

Posted at

##前書き

とにかくアウトプットなので、1時間程で調べて、書いて、投稿の流れ

##main(args :Array)のargsとは?

Kotlin最初の方で出てくる。

fun main(args :Array<String>) {
  println("Hello World")
}

argsって何?という話

JavaからKotlinに入っている人なら、
わかりやすいらしいが
###args = argument(引数) のようだ

①Kotlinのmain関数の引数はコマンドライン引数

※コマンドライン引数

上の例では、「args」は引数を代入する変数
実際何でも良い
以下で、例を示し動かして見ましたが、問題なく動きました。

// args = arguments に変更した例
fun main(arguments: Array<String>) {
    println("Hello World")
}

何でも良いという例

// args = a に変更した例
fun main(a: Array<String>) {
    println("Hello World")
}

###おまけ

その後ろのに続く「Array」は型指定
Array = 配列
= String型
を表している。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?