Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这里遗漏了一些简单的东西。
添加新模块时,选择 scala:
但是,当创建新类时,当尝试运行它时,我得到
作为模块属性,我看到了
请问我错过了什么?
两件事情:
您应该在object某处声明(最好在课堂之外)。
object
object runnableObject { def main(args: Array[String]) { println("Hello world!") } }
然后,您可以使用此对象在 IntelliJ 中运行您的 Scala 代码。