当前位置: 代码迷 >> J2SE >> 匿名内部类异常,抄书的,肯定是小异常,大神们看看,指教下!
  详细解决方案

匿名内部类异常,抄书的,肯定是小异常,大神们看看,指教下!

热度:70   发布时间:2016-04-23 20:45:40.0
匿名内部类错误,抄书的,肯定是小错误,大神们看看,指教下!!!
package test;

import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;

import javax.swing.Timer;

public class test01 {
public static void main(String[] args){

}
}
class TalkingClock1{
public void start(int interval,final boolean beep){
ActionListener listener=new ActionListener();//Cannot instantiate the type ActionListener
{
public void actionPerformed(ActionEvent e){//void is an invalid type for the variable actionPerformed
Date now=new Date();
System.out.println("At this tone,the time is "+now);
if(beep)Toolkit.getDefaultToolkit().beep();
}
}
Timer t=new Timer(interval,listener);
t.start();
}
}
特别要说说怎么改,是放在新的package里的!
------解决方案--------------------
ActionListener listener=new ActionListener();


这一行应该没分号。
------解决方案--------------------
看3喽
  相关解决方案