2010-12-10 49 views

回答

0

I'm running main.scala and there is a object of name MyServer. Is it necessary to create a class for it.

不,你不需要創建一個類。所有你需要的是一個main方法的對象:

def main(args: Array[String]): Unit = { println("hello") } 

不管怎麼說,提供更多的信息:代碼,你如何嘗試運行它,樓宇系統,IDE等