1

为什么我的计时器出现错误?在代码下方,它说明了错误是什么。我无法弄清楚我做错了什么......谁能帮助我

       import java.util.Timer;
       import javax.swing.ImageIcon;
       import javax.swing.JPanel;

       /**
        *
      * @author Rich
      */
     public class Board extends JPanel implements ActionListener{
         Dude p;
        Image img;
       Timer time;

        public Board() {
         p = new Dude();
        addKeyListener(new AL());
         setFocusable(true);
          ImageIcon i = new ImageIcon("images.jpg");
          img = i.getImage();
          time = new Timer(5,this);
          time.start();
        }

        public void actionPerformed(ActionEvent e) {
        p.move();
        repaint();
         }

基本上我得到的错误是

no  suitable constructor found for Timer(int,OurGame.Board)
constructor java.util.Timer.Timer(java.lang.String,boolean) is not applicable
  (actual argument int cannot be converted to java.lang.String by method invocation conversion)
constructor java.util.Timer.Timer(java.lang.String) is not applicable
  (actual and formal argument lists differ in length)
constructor java.util.Timer.Timer(boolean) is not applicable
  (actual and formal argument lists differ in length)
constructor java.util.Timer.Timer() is not applicable
  (actual and formal argument lists differ in length)
4

3 回答 3

6

您应该导入javax.swing.Timer而不是java.util.Timer.

于 2012-05-29T18:33:26.240 回答
3

你导入了java.util.Timer. 使用javax.swing.Timer. 不是你的错,你经常看到。

对于文档,请阅读http://docs.oracle.com/javase/7/docs/api/javax/swing/Timer.html

于 2012-05-29T18:33:42.617 回答
-2

以下行中的“this”变量:

time = new Timer(5,this);

指的是当前类,而 Timer 类不知道如何处理它;)

于 2012-05-29T18:32:09.383 回答