Scala Tutorialsを読む 22-3

http://scalatutorials.com/tour/interactive_tour_of_scala_arrays.html

Since they are using Java's arrays, to print nicely an Array's content, use .mkString(",") Javaの配列を使っているので、配列は.mkString(",")を使ってプリント出来ます。

Array elements can be of any type, but the Array's final type will be the lowest common denominator

配列の要素はどんな型でも使えますが、配列の最終的な型は最小の共通部分になります。

See Also opens in new page

新しいページを開いて参照

  • Array's scala docs
  • scalaドキュメントの配列

配列読み終えました。