これを完了する方法がわかりません。私は自分で学んでいますが、次のような長方形のクラスがあるこの演習を見つけました。
public class Rectangulo {
private int x, y, width, heigth;
public Rectangulo(int x, int y, int width, int heigth){
this.x = x;
this.y = y;
this.width = width;
this.heigth = heigth;
}
public boolean isOverlaping(Rectangulo r1, Rectangulo r2){
}
そして、2 つの長方形が重なっている/衝突している場合は true を返し、そうでない場合は false を返すように、メソッドを完了する必要があります。この問題を考えるのに役立つガイドやヒントを教えてください。
交差メソッドを使用する必要はありません。
ありがとう!