1.10.4看谁运行的得快
Posted 成功的路上总是离不开贵人的帮助,名师的指点和小人的刺激。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.10.4看谁运行的得快相关的知识,希望对你有一定的参考价值。
测试如下
package com.cky.prioritydemo; /** * Created by edison on 2017/12/3. */ public class ThreadA extends Thread{ private int count =0; public int getCount() { return count; } @Override public void run() { super.run(); while(true) { count++; } } }
package com.cky.prioritydemo; /** * Created by edison on 2017/12/3. */ public class ThreadB extends Thread{ private int count =0; public int getCount() { return count; } @Override public void run() { super.run(); while(true) { count++; } } }
package com.cky.prioritydemo; /** * Created by edison on 2017/12/3. */ public class TestAB { public static void main(String[] args) { try { ThreadA thA = new ThreadA(); thA.setPriority(Thread.NORM_PRIORITY -3); thA.start(); ThreadB thB = new ThreadB(); thB.setPriority(Thread.NORM_PRIORITY +3); thB.start(); Thread.sleep(2000); thA.stop(); thB.stop(); System.out.println("a="+thA.getCount()); System.out.println("b="+thB.getCount()); } catch (InterruptedException e) { e.printStackTrace(); } } }
a=1428639097
b=1429717263
以上是关于1.10.4看谁运行的得快的主要内容,如果未能解决你的问题,请参考以下文章