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看谁运行的得快的主要内容,如果未能解决你的问题,请参考以下文章

python-520表白代码,我看谁说程序员不懂浪漫,送你几套表白代码,一步到位

当代码农「爽点」图鉴,谁看谁中枪

GridSearchCV 的得分值

静态RMQ模板题 contest 静态RMQ T2

最敏捷的机器人(线段树维护区间最值)

人傻钱多死得快的程序员