定义一个名称为IMyInterface的接口,在接口中声明用于求两个整数之和的add( )方法和用来求三个整数之积的volume( )方法。
public interface IMyInterface{
public class InterfaceDemo implements IMyInterface{
public void add (int x,int y){
System.out.println(""+(x*y));
}
public void volume (int x,int y,int z){
System.out.println(""+(x*y*z));
}
public static void main(String args[]){
InterfaceDemo d=new InterfaceDemo();
d.add(10,20);
d.volume(10,10,10);
}
}
}
在类 IMyInterface 中找不到 main 方法, 请将 main 方法定义为:
public static void main(String[] args)
否则 JavaFX 应用程序类必须扩展javafx.application.Application