这里是典型的新手。尝试为我的第一个编程课构建所有强大的井字游戏网格。
我一直在尝试从 api 文档中进行所有有意义的操作,但到目前为止还没有运气。
我认为我最大的问题是不了解如何使用方法和参数,并且是一个完全的菜鸟,但我会到达那里。
这就是我所拥有的:
import java.awt.Rectangle;
public class TicTacToe {
public static void main (String[] args) {
new Rectangle (0,0,30,30); //create new box
Rectangle box = new Rectangle (0,0,30,30); // tying the box to a variable
box.add (Rectangle 0,0,10,10); /* error box can onot be resolved to a variable*/
}
}
所以我的问题是如何将 9 个宽度为 10 高度为 10 的盒子添加到这个较大的盒子中?当我添加这些框时,我也必须输入新的 xy 尺寸,对吗?
感谢您的帮助!