我在BlueJ中尝试了此代码,该代码应创建一个矩形并四处移动,但是它不起作用。然后,我将完全相同的代码放入Eclipse中,并且其功能达到了我的预期。有什么想法为什么可以在Eclipse而不是在BlueJ中使用?
import javax.swing.*;
import java.awt.*;
public class Shapes
{
public static void main(String[] args)
{
JFrame frame = new JFrame("Test");
Draw object = new Draw();
frame.add(object);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,400);
frame.setVisible(true);
}
}
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Draw extends JPanel implements ActionListener, KeyListener
{
Timer tm = new Timer(5,this);
int x = 0, y = 0, velX = 0, velY = 0;
public Draw()
{
tm.start();
addKeyListener(this);
setFocusable(true);
setFocusTraversalKeysEnabled(false);
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(Color.BLUE);
g.fillRect(x,y,100,20);
}
public void actionPerformed(ActionEvent e)
{
x += velX;
y += velY;
repaint();
}
public void keyPressed(KeyEvent e)
{
int c = e.getKeyCode();
if(c == KeyEvent.VK_LEFT)
{
velX = -1;
velY = 0;
}
if(c == KeyEvent.VK_UP)
{
velX = 0;
velY = 1;
}
if(c == KeyEvent.VK_RIGHT)
{
velX = 1;
velY = 0;
}
if(c == KeyEvent.VK_DOWN)
{
velX = 0;
velY = -1;
}
}
public void keyTyped(KeyEvent e){}
public void keyReleased(KeyEvent e)
{
velX = 0;
velY = 0;
}
}
最佳答案
我可以看到您的意思,我相信它会附在屏幕的那个角上,因为当我调整屏幕大小时,它会随着那个角移动。我认为不是BlueJ无法正确运行它,我相信它可以运行,但是它与Eclipse的运行方式不同。
我相信this question会问同样的事情,并且它会得到很好的答案,您应该首先看看它。
关于java - Eclipse vs BlueJ问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35418058/