我想了解更多有关图形以及如何使用它的信息。
我有这门课:
public class Rectangle
{
private int x, y, length, width;
// constructor, getters and setters
public void drawItself(Graphics g)
{
g.drawRect(x, y, length, width);
}
}
还有一个像这样的非常简单的框架:
public class LittleFrame extends JFrame
{
Rectangle rec = new Rectangle(30,30,200,100);
public LittleFrame()
{
this.getContentPane().setBackground(Color.LIGHT_GRAY);
this.setSize(600,400);
this.setVisible(true);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args)
{
new LittleFrame();
}
}
我想做的就是把这个矩形添加到我的 LittleFrame 的容器中。但我不知道该怎么做。