⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 innerclasstest.java

📁 这个是我老师给的Java核心技术1的第6章源代码
💻 JAVA
字号:
/**
   @version 1.10 2004-02-27
   @author Cay Horstmann
*/

import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import javax.swing.Timer;

public class InnerClassTest
{  
   public static void main(String[] args)
   {  
      TalkingClock clock = new TalkingClock(1000, true);
      clock.start();

      // keep program running until user selects "Ok"
      JOptionPane.showMessageDialog(null, "Quit program?");
      System.exit(0);
   }
}

/**
   A clock that prints the time in regular intervals.
*/
class TalkingClock
{  
   /**
      Constructs a talking clock
      @param interval the interval between messages (in milliseconds)
      @param beep true if the clock should beep
   */
   public TalkingClock(int interval, boolean beep)
   {  
      this.interval = interval;
      this.beep = beep;
   }

   /**
      Starts the clock.
   */
   public void start()
   {
      ActionListener listener = new TimePrinter();
      Timer t = new Timer(interval, listener);
      t.start();
   }

   private int interval;
   private boolean beep;

   private class TimePrinter implements ActionListener
   {  
      public void actionPerformed(ActionEvent event)
      {  
         Date now = new Date();
         System.out.println("At the tone, the time is " + now);
         if (beep) Toolkit.getDefaultToolkit().beep();
      }
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -