谁能解释整数在矩形中心和矩形障碍物中的用途是什么?我已经明白 int 是正整数或负整数。另外,如果中心和障碍物需要它们,为什么我不需要 Rectangle left 和 Rectangle right 中的任何整数?我还是新手,所以如果有人认为我应该包含更多代码,请告诉我。
Rectangle left = new Rectangle(0,0,WIDTH/9,HEIGHT);
Rectangle right = new Rectangle((WIDTH/9)*8,0,WIDTH/9,HEIGHT);
Rectangle center = new Rectangle((int)((WIDTH/9)* 2.5),(int)((HEIGHT/9)*2.5),(int)
((WIDTH/9)*5),(HEIGHT/9)*4);
Rectangle obstacle = new Rectangle(WIDTH/2,(int)((HEIGHT/9)*7),
WIDTH/10,HEIGHT/9);