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