编程思想里面的程序在我的电脑上面是错误的,请大神过来指点
public interface ClassInInterface{
void howdy();
class Test implements ClassInInterface
{
public void howdy()
{
System.out.println("Howdy!");
}
public static void main(String[] args)
{
new Test().howdy();
}
}
}
/*
错误: 在类 ClassInInterface 中找不到 main 方法, 请将 main 方法定义为:
public static void main(String[] args)
否则 JavaFX 应用程序类必须扩展javafx.application.Application
*/