Compiler error: “class, interface, or enum expected”

前端 未结 6 1724
时光说笑
时光说笑 2020-11-27 17:29

I have been troubleshooting this program for hours, trying several configurations, and have had no luck. It has been written in java, and has 33 errors (lowered from 50 befo

6条回答
  •  -上瘾入骨i
    2020-11-27 18:04

    class, interface, or enum expected

    The above error is even possible when import statement is miss spelled. A proper statement is "import com.company.HelloWorld;"

    If by mistake while code writing/editing it is miss written like "t com.company.HelloWorld;"

    compiler will show "class, interface, or enum expected"

提交回复
热议问题