摘要:
本质 本质上就是一个宽泛的抽象类 作用 public interface Shape1 { int a=1; //系统自动增加成为: // public static final int a=1; double length(); double area(); //系统自动添加成为: // publ 阅读全文
摘要:
两个代码结果不一样 public void mul(Complex other) { int r = this.real * other.real - this.image * other.image; int i = this.image * other.real + this.real * ot 阅读全文