我如何处理这个问题>?
编写一个名为XYInterface的接口,它包含两个int常量, X = 5和Y = 10以及一个名为useXY的方法,它接收不 参数并返回一个整数值。 (您不需要实施 XYInterfac)
public interface XYInterface {
int x = 5;
int y = 10
}
谢谢。
答案 0 :(得分:0)
public interface XYInterface {
final int x = 5;
final int y = 10;
static public int useXY() {
return 10; //some integer
}
}
您可以从任何主要类
调用useXYpublic class Main {
public static void main(String[] args) {
System.out.println(XYInterface.useXY());
}
}