gpt4 book ai didi

intellij-idea - Intellij“在类中找不到主类”

转载 作者:行者123 更新时间:2023-12-02 13:01:04 24 4
gpt4 key购买 nike

我在intellij中生成了该项目,其目的是使用jvm和kotlin,我有一个src目录,我创建了一个名为Bot的kotlin类,目前看起来像这样:

class Bot{
companion object {
@JvmStatic
fun main(args: Array<String>) {
println("hello")
}
}
}

但我也尝试过:
class Bot{
fun main(args: Array<String>) {
println("hello")
}
}

要不就 :
fun main(args: Array<String>) {
println("hello")
}

我用手指出了该类的配置,但是每次我尝试运行我的项目时,我都会得到 Function main not found in class Bot,而它显然在那里...你们能给我一个让我运行我的应用程序的示例类的示例吗? enter image description here

最佳答案

更改对象的类,然后将platformStatic添加到您的main方法中

object Main {
  platformStatic fun main(args: Array<String>){
  println("hello")
  }
}

或者将您的主要职能放在类之外
fun main(args: Array<String>){
  println("hello")
}

关于intellij-idea - Intellij“在类中找不到主类”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58146800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com