: , :
:
if (other instanceof Square)
Square realOther = (Square) other;
else
Rectangle realOther = (Rectangle) other;
- , :
if (other instanceof Square) {
Square realOther = (Square) other;
} else {
Rectangle realOther = (Rectangle) other;
}
, realOther. , , , .
, , ( if) , , "realOther" .
Java , ( ) " , , , ".
, Java . , , if, realOther. if Java-, , realOther .
, setWidth setHeight ( setHeight). IF, Java setWidth ? Java ( , ).
:
, :
public void reSize(Square other, int h, int w) {
other.setHeight(h);
if (realOther instanceof Rectangle) {
((Rectangle)realOther).setWidth(w);
}
, , , , , , .
, . , / - , OO, - ...