-3
我該如何處理這個問題?在java中編寫接口
收件的接口名爲XYInterface包含兩個int常量, X = 5和Y = 10和被叫useXY接收無 參數,並返回一個整數值的方法。 (你並不需要實現 的XYInterfac)
public interface XYInterface {
int x = 5;
int y = 10
}
謝謝。
我該如何處理這個問題?在java中編寫接口
收件的接口名爲XYInterface包含兩個int常量, X = 5和Y = 10和被叫useXY接收無 參數,並返回一個整數值的方法。 (你並不需要實現 的XYInterfac)
public interface XYInterface {
int x = 5;
int y = 10
}
謝謝。
public interface XYInterface {
final int x = 5;
final int y = 10;
static public int useXY() {
return 10; //some integer
}
}
,你可以從任何主類
public class Main {
public static void main(String[] args) {
System.out.println(XYInterface.useXY());
}
}
真棒叫useXY!非常感謝! –
如果答案滿足你,你可以將其標記爲已接受。 –