在 eclipse 中运行 scala 的配置

发布于 2024-10-06 22:53:28 字数 104 浏览 2 评论 0原文

嗨,我必须运行一个 scala 程序。我收到错误主类未找到。然后我打开首选项并在 scala 应用程序中。主类列未指定主类。你能告诉我我必须在该栏中填写什么才能运行我的程序吗?请帮助我。提前致谢

hi i have to run a scala programme. i got the error Main class not found.then i open preferences and in scala application. main class column no main class specified . can u please tell me what must i have to fill in that colummn to run my programme.please help me.thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

⊕婉儿 2024-10-13 22:53:28

您能提供任何额外信息吗?

我刚刚创建了一个 Scala 项目,右键单击“新建 Scala 项目”。保留所有默认值。创建了以下对象

object HelloWorld {

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

 }

在 Package Explorer 中右键单击该文件并选择 “Run As” -> “Scala 应用程序”

我正在使用 Eclipse
版本:3.5.2
内部版本号:M20100211-1343

插件版本 1.0.0.201011220809

检查您处于 Scala 视角而不是 Java 中。

Can you provide any extra information?

I've just created a Scala project, right click new Scala Project. Keep all defaults. Created the following object

object HelloWorld {

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

 }

Right click on the file in the Package Explorer and select "Run As" -> "Scala Application"

I'm using Eclipse
Version: 3.5.2
Build id: M20100211-1343

Plugin version 1.0.0.201011220809

Check you are in the Scala Perspective and not Java.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文