第16周做業

題目1:編寫一個應用程序,利用Java多線程機制,實現時間的同步輸出顯示。html

import java.awt.*;
import javax.swing.*;
import java.util.Date;
import java.awt.*;
class Time extends JFrame implements Runnable{//實現接口
Thread clockThread;
   JLabel jLabel=new JLabel();
   public Time()
   {
   Container con=this.getContentPane();
   con.add(new Drawtime());
   }
public void start(){
//該方法是類的方法,不是線程的方法
if(clockThread==null){
   clockThread=new Thread(this,"Clock");
   /*線程體是Clock對象自己,線程名字爲"Clock"*/
   clockThread.start();//啓動線程
}

public void run(){//run()方法中是線程執行的內容
    while(clockThread!=null){
    repaint();//刷新顯示畫面
    try{
       clockThread.sleep(1000);
       //睡眠1秒,即每隔1秒執行一次
    }
    catch(InterruptedException e){}
    }
}
public void stop(){
//該方法是類的方法,不是線程的方法
clockThread.stop();
clockThread=null; 
}
}
public class JFrameDemo 
{public static void main(String[] args)
{Time frame=new Time(); 
frame.setSize(500,300); 
frame.setVisible(true);                   //設置組件可見   
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); //關閉容口,並結束程序的運行
frame.start();
frame.run();
frame.stop();
}
}
class Drawtime extends JPanel
{
public void paint(Graphics g){
   g.setColor(Color.red);
   Font font1=new Font("華文彩雲",Font.ITALIC,60);
   g.setFont(font1);
Date now=new Date();//得到當前的時間對象
g.drawString(now.getHours()+":"+now.getMinutes()+":"+now.getSeconds(),140,140);
//顯示當前時間

}java

 題目2:編寫一個應用程序,利用Java多線程機制,實現猜數字遊戲(隨機數範圍0~100之間的整數)多線程

import java.util.InputMismatchException;dom

import java.util.Scanner;
public class Main {this

public static void main(String[] args) {線程

// 產生一個隨機數htm

int number = (int) (Math.random() * 100) + 1;
// 加入count對象

int count = 0;
// 在這裏加入最大值,和最小值接口

int max = 100;遊戲

int min = 1;
while (true) {

// 鍵盤錄入數據

Scanner sc = new Scanner(System.in);

System.out.println("請輸入你要猜的數據:(" + min + "~" + max + ")");

try {

count++;

int guessNumber = sc.nextInt();

// 判斷

if (guessNumber > number) {

max = guessNumber;

System.out.println("你猜大了");

} else if (guessNumber < number) {

min = guessNumber;

System.out.println("你猜小了");

} else {

System.out.println("恭喜你,花了" + count + "次就猜中了");

// 問是否繼續

System.out.println("請問還要繼續嗎?(yes)");

sc = new Scanner(System.in);

String str = sc.nextLine();

if ("yes".equals(str)) {

// 重寫賦值隨機數

number = (int) (Math.random() * 100) + 1;

count = 0;

max = 100;

min = 1;

} else {

break;

}

}

} catch (InputMismatchException e) {

System.out.println("你輸入的數據有誤");

}

}

}

}

相關文章
相關標籤/搜索