我正在尝试设置梯形,方形等的端点。
例如:TRX
(右上角x)为2,TRY
(右上角y)为2,因此右上角为(2,2)
。我想知道如何使用给定层次结构的子类中的变量:
public class Quadrilateral {
private int TRX, TLX, BRX, BLX;
private int TRY, TLY, BRY, BLY;
public static void main(String[] args) {
}
}
class Trapezoid extends Quadrilateral {
}
class Square extends Quadrilateral {
}