0

当我尝试在 Eclipse 上测试运行以下代码时,Java 小程序出现了,并且只显示了一个正方形。但它没有显示 (rect2) 矩形

GRect Rect2 = new GRect (300, 75, 200, 100) ;
Rect2.setFilled (true) ; 
Rect2.setColor (Color.RED) ; 
add (Rect2) ; 

或(GLabel)“你好世界”。

   GLabel Label = new GLabel ("Hello, world, 100, 75") ;     
   Label.setFont(new Font("Courier New", Font.ITALIC, 12));    
   Label.setColor (Color.RED);    add (Label) ;

整个代码:

import acm.graphics.*; 
import acm.program.* ; 
import java.awt.* ; 

public class Test extends GraphicsProgram  {
    private static final long serialVersionUID = 3365078119967111934L;

    public void run () { 
        GLabel Label = new GLabel ("Hello, world, 100, 75") ; 
        Label.setFont(new Font("Courier New", Font.ITALIC, 12));
        Label.setColor (Color.RED);
        add (Label) ; 

        GRect Rect1 = new GRect (10, 10, 50, 50) ;
        add(Rect1) ; 

        GRect Rect2 = new GRect (300, 75, 200, 100) ;
        Rect2.setFilled (true) ; 
        Rect2.setColor (Color.RED) ; 
        add (Rect2) ; 
    }     
}
4

1 回答 1

0

矩形是在原始窗口之外绘制的。如果您只是拖动小程序窗口使其变大,您将看到一个实心的红色矩形。

所以我给你的解决方案是简单地设置窗口的初始大小:

setSize(800, 800);

并且您的 GLabel 的参数是错误的。这样做:

GLabel Label = new GLabel ("Hello world", 100, 75) ; 
于 2014-02-04T20:17:55.123 回答