package holle; public class holle_world { int a; void holle(){ System.out.println("hello world"); } } 为什么我的主函数提示class or interface expected
时间: 2024-04-08 07:33:56 浏览: 89
holle-world.zip_holle world_holleworld_holleworld 代码_world_你好世界代
你的主函数提示"class or interface expected"是因为你没有在你的代码中定义一个类或接口。在Java中,主函数(main函数)必须在一个类中被定义。你可以尝试像这样修改你的代码:
```java
package holle;
public class HolleWorld {
int a;
void holle() {
System.out.println("hello world");
}
public static void main(String[] args) {
HolleWorld obj = new HolleWorld();
obj.holle(); // 调用 holle() 方法
}
}
```
在上面的代码中,我将类名从"holle_world"改为"HolleWorld",并在类中添加了一个名为"main"的主函数。现在你应该能够成功运行你的程序了。
阅读全文