问答详情
源自:10-3 Java 中的抽象类

public void setLength(double length ,double width) { this.length = length; this.width=width; }

public void setLength(double length ,double width) {

this.length = length;//            亲问下这个是什么意思。

this.width=width;//           同上

}


提问者:qq__9839 2017-07-27 14:37

个回答

  • 秋e
    2017-07-27 14:48:18

    将setLength方法中的length变量的值赋给属性length,下面的width同理。