这要怎么改?
Add a field position to class Rectangle with type Point .
代码:
public class Main
{
public static void main(String[] args)
{
Rectangle rect = new Rectangle();
rect.width = 100;
System.out.println(rect.width);
rect.height = 200;
System.out.println(rect.height);
Rectangle rect2 = new Rectangle();
rect2.width = 10;
System.out.println(rect2.width);
rect2.height = 20;
System.out.println(rect2.height);
Point p = new Point();
p.x = 4;
p.y = 5;
System.out.println(p.x);
System.out.println(p.y);
}
}
class Point
{
int x;
int y;
}
class Rectangle
{
int width;
int height;
}
这要怎么改? Add a field position to class Rectangle wi
答案:2 悬赏:20 手机版
解决时间 2021-02-13 22:46
- 提问者网友:蔚蓝的太阳
- 2021-02-13 15:48
最佳答案
- 五星知识达人网友:往事隔山水
- 2021-02-13 17:24
class Rectangle{
int width;
int height;
Point position;
}
int width;
int height;
Point position;
}
全部回答
- 1楼网友:千夜
- 2021-02-13 17:38
在Rectangle里增加Point p;
再看看别人怎么说的。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯