简单实用的多线程学习实例
生活随笔
收集整理的這篇文章主要介紹了
简单实用的多线程学习实例
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package syttest;/*** @author yuzhuliu:* @version 創建時間:2017年9月26日 下午11:58:21* 類說明*/public class ThreadTest {public static int threadCount=1;//啟動線程數量public static int threadExcuteCount=10;//每個線程執行任務次數,沒有數量的時候設置為999999999默認無窮大public static int average; //每個任務執行的平均耗時public static float tps; //瞬時tps public static int allhits=threadCount*threadExcuteCount; //總執行任務數量public static void main(String[] args) {for (int i = 0; i <threadCount; i++) {Thread th= new Thread(new Runnable1());th.setName("測試線程"+i);th.start();}}
}
class Runnable1 implements Runnable{public void run() {for (int i = 0; i < 200000; i++) {long startTime=System.currentTimeMillis();//記錄開始時間System.out.println("處理事務");//替換為自己的方法long endTime=System.currentTimeMillis();//記錄結束時間float excTime=(float)(endTime-startTime);ThreadTest.tps=(float)ThreadTest.threadCount*(1000/excTime);System.out.println(Thread.currentThread().getName()+"||當前線程執行次數:"+i+"||耗時為:"+excTime+"||TPS="+ThreadTest.tps+"||執行結果:"+test.flag);System.out.println("");}}
總結
以上是生活随笔為你收集整理的简单实用的多线程学习实例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 我的编程生涯的入门语言 - C语言之学员
- 下一篇: 游艇租用