您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Java利用多線程、進度條實現賽馬實驗,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
import javax.swing.*; import java.awt.*; public class Test { static Thread threadObj1; static Thread threadObj2; JFrame frame; JPanel panel; JLabel label1,label2; static JLabel label3; static JProgressBar progressBar1; static JProgressBar progressBar2; public static void main(String[] args) { Test test=new Test(); test.go(); threadObj1=new ThreadClass1(); threadObj2=new ThreadClass2(); threadObj1.setPriority(6); threadObj2.setPriority(4); threadObj1.start(); threadObj2.start(); } void go() { frame=new JFrame("賽馬"); panel=new JPanel(); panel.setLayout(new GridLayout(2,2)); label1=new JLabel("一號馬"); label2=new JLabel("二號馬"); label3=new JLabel("加油!"); progressBar1 = new JProgressBar(SwingConstants.HORIZONTAL,0,100); progressBar1.setStringPainted(true); progressBar2 = new JProgressBar(SwingConstants.HORIZONTAL,0,100); progressBar2.setStringPainted(true); panel.add(label1); panel.add(progressBar1); panel.add(label2); panel.add(progressBar2); frame.getContentPane().add(panel,BorderLayout.CENTER); frame.getContentPane().add(label3,BorderLayout.SOUTH); frame.setSize(300, 100); frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); frame.setVisible(true); } } class ThreadClass1 extends Thread { public void run() { while(Test.progressBar1.getValue()<100) { Test.progressBar1.setValue(Test.progressBar1.getValue()+1); System.out.println(Test.progressBar1.getValue()); try{ Thread.sleep((int)(Math.random()*300+100)); }catch(InterruptedException e) {} } if(Test.progressBar1.getValue()==100 && Test.progressBar2.getValue()!=100) Test.label3.setText("勝利者:1號馬!"); } } class ThreadClass2 extends Thread { public void run() { while(Test.progressBar2.getValue()<100) { Test.progressBar2.setValue(Test.progressBar2.getValue()+1); System.out.println(Test.progressBar2.getValue()); try{ Thread.sleep((int)(Math.random()*300+100)); }catch(InterruptedException e) {} } if(Test.progressBar2.getValue()==100 && Test.progressBar1.getValue()!=100) Test.label3.setText("勝利者:2號馬!"); } }
以上就是Java利用多線程、進度條實現賽馬實驗,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。