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

📄 ex_19.java

📁 JAVA分布式程序学习的课件(全英文)
💻 JAVA
字号:


// Based on the Holmes text
// chap_11\prob_32
// applet to display a line moving down vertically, in alternating
// colors

import java.applet.*;
import java.awt.*;
import java.util.*;

public class Ex_19 extends Applet implements Runnable
{
    Thread appletThread1, appletThread2;	
    int length = 1;
    Color c = Color.blue;

    public  void start()  // applet's start( ) method
    {		
        if (appletThread1 == null)
        {
          appletThread1 = new Thread(this, "a");
          appletThread1.start( );
        }
        if (appletThread2 == null)
        {
          appletThread2 = new Thread(this, "b");
          appletThread2.start( );
        }
    }

    public void run()  // overrides Runnable's run( ) method
    {
      String executingThread = Thread.currentThread().getName();
      if (executingThread.equals("b"))
      {
        try{Thread.sleep(500);}
        catch(InterruptedException i) {System.exit(1);}
      }
      while (true)
      {
        if (executingThread.equals("a"))
          c = Color.blue;
        else if (executingThread.equals("b"))
          c = Color.red;
        repaint();
        length+= 10;
        try{Thread.sleep(1000);}
        catch(InterruptedException i) {System.exit(1);}
      }
    }

    public void stop()  // overrides Applet's stop( )
    {
      if (appletThread1 != null)
      {
        // appletThread1.stop();  deprecated
        appletThread1 = null;
      }
      if (appletThread2 != null)
      {
        // appletThread2.stop();  deprecated
        appletThread2 = null;
      }
    }

    public void paint(Graphics g)  // overrides Applet's paint()
                                   // in java.awt.Component class
    {
         g.setColor (c);
         g.drawLine(100, length, 500, length);
    }
}

⌨️ 快捷键说明

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