簡體   English   中英

Core Java中的繪制形狀示例未出現在框架中

[英]Draw Shapes Example from Core Java not appearing in frame

我正在閱讀Core Java,並且遇到了以下代碼片段:

package draw;

import java.awt.*;
import java.awt.geom.*;
import javax.swing.*;
public class DrawTest 
{
    public static void main(String[] args) 
    {
        EventQueue.invokeLater(new Runnable()
{
    public void run()
    {
        JFrame frame = new DrawFrame();
    frame.setTitle("DrawTest");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    }
});
}
}

class DrawFrame extends JFrame
{
    public DrawFrame()
    {
    add(new DrawComponent());
    pack();
    }
}

class DrawComponent extends JComponent
{
    private static final int DEFAULT_WIDTH = 400;
    private static final int DEFAULT_HEIGHT = 400;

    public void paintCompent(Graphics g)
    {
    Graphics2D g2 = (Graphics2D) g;

    // draw a rectangle
    double leftX = 100;
    double topY = 100;
    double width = 200;
    double height = 150;

    Rectangle2D rect = new Rectangle2D.Double(leftX, topY, width, height);
    g2.draw(rect);
    // draw the enclosed ellipse
    Ellipse2D ellipse = new Ellipse2D.Double();
    ellipse.setFrame(rect);
    g2.draw(ellipse);

    // draw a diagonal line
    g2.draw(new Line2D.Double(leftX, topY, leftX + width, topY + height));

    // draw a circle with the same center
    double centerX = rect.getCenterX();
    double centerY = rect.getCenterY();
    double radius = 150;
    Ellipse2D circle = new Ellipse2D.Double();
    circle.setFrameFromCenter(centerX, centerY, centerX + radius, centerY + radius);
    g2.draw(circle);
    }

    public Dimension getPreferredSize()
    {
        return new Dimension(DEFAULT_WIDTH, DEFAULT_HEIGHT);
    }
}

我在Eclipse上嘗試了這段代碼,它確實運行了,但是在框架中什么也沒有出現,而是矩形,橢圓形,對角線和圓形。 我對照這本書仔細檢查了代碼,沒有錯字。 怎么了?

拼寫有誤...

public void paintCompent(Graphics g) {

應該

public void paintComponent(Graphics g) {

這就是為什么應該使用@Override注釋的原因,因為當您嘗試覆蓋父層次結構中不存在的方法時,它將給您帶來編譯時錯誤。

您還應該調用super.paintComponent(g); 在執行任何自定義繪畫之前

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM