interface Shape{ //定義Shape介面final double PI = 3.14; } interface Color{ abstract void setColor(String str); //定義Color介面} class Circle implements ...
確定! 回上一頁