Scala笔记(4)——main函数

scala中,main函数必须定义在object中(Java中,main函数必须是class中的static方法):

object Hello extends App{
  override def main(args: Array[String]): Unit = {
    ......
  }
}

或:

object Hello{
  def main(args: Array[String]): Unit = {
    ......
  }
}

其中应用程序的命令行参数通过Array[String]传给main()函数。

发表评论

邮箱地址不会被公开。 必填项已用*标注

This site uses Akismet to reduce spam. Learn how your comment data is processed.