我需要创建一个矩形对象,然后使用paint()将其绘制到小程序中。我试过
Rectangle r = new Rectangle(arg,arg1,arg2,arg3);
然后尝试使用将其绘制到小程序
g.draw(r);
它不起作用。在java中有办法做到这一点吗?我在谷歌上搜索了一英寸以内的答案,但一直没能找到答案。请帮忙!
试试这个:
public void paint (Graphics g) {
Rectangle r = new Rectangle(xPos,yPos,width,height);
g.fillRect(r.getX(), r.getY(), r.getWidth(), r.getHeight());
}
[编辑]
// With explicit casting
public void paint (Graphics g) {
Rectangle r = new Rectangle(xPos, yPos, width, height);
g.fillRect(
(int)r.getX(),
(int)r.getY(),
(int)r.getWidth(),
(int)r.getHeight()
);
}
您可以这样尝试:
import java.applet.Applet;
import java.awt.*;
public class Rect1 extends Applet {
public void paint (Graphics g) {
g.drawRect (x, y, width, height); //can use either of the two//
g.fillRect (x, y, width, height);
g.setColor(color);
}
}
其中x为x坐标y是y堇青石color=您想要使用的颜色,例如color.blue
如果你想使用矩形对象,你可以这样做:
import java.applet.Applet;
import java.awt.*;
public class Rect1 extends Applet {
public void paint (Graphics g) {
Rectangle r = new Rectangle(arg,arg1,arg2,arg3);
g.fillRect(r.getX(), r.getY(), r.getWidth(), r.getHeight());
g.setColor(color);
}
}
注意:drawRect
和fillRect
不同
绘制指定矩形的轮廓:
public void drawRect(int x,
int y,
int width,
int height)
填充指定的矩形。矩形使用图形上下文的当前颜色填充:
public abstract void fillRect(int x,
int y,
int width,
int height)