我是java的新手,我想制作一个矩形,该矩形使用带有扫描仪的用户输入来获取矩形的大小。问题在于,它需要用户输入,但不显示矩形。我相信这是因为我的y整数位于静态函数中,但是我不确定如何解决此问题。我在Google上搜索了很长时间,但找不到答案。谁能帮我吗?谢谢。 :)

    import java.util.Scanner;
    import java.awt.*;
    import java.awt.event.ActionListener;

    import javax.swing.*;

    public class Shape extends JPanel implements ActionListener{

        Timer tm = new Timer(5, this);

        public static void main(String[] args){
             System.out.println("Place in the width of your vaccum cleaner here:");
             Scanner myY = new Scanner(System.in);
             int y = myY.nextInt();

             JFrame jf = new JFrame("Title");
             jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             Shape s = new Shape();
             jf.add(s);
             jf.setSize(600, 400);
             jf.setVisible(true);
        }
        public void paintComponent(Graphics g){
             super.paintComponent(g);
             this.setBackground(Color.PINK);

             g.setColor(Color.BLACK);
             g.fillRect(0, 0, 40, y);

             tm.start();
        }
    }

最佳答案

您发布的代码无法编译,因此现在可以通过它显示矩形。
int y是在main中定义的,在paintComponent中无法识别。
将其设置为类变量:static int y;,并在main中通过以下方式将其初始化:y = myY.nextInt();

10-07 18:56