码迷,mamicode.com
首页 > 编程语言 > 详细

线程工具类ThreadUtils

时间:2018-02-04 13:52:59      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:exception   priority   info   exce   java   ret   string   return   blog   

package yqw.java.util;

 

public class ThreadUtils {

    /**
     * showThreadInfo
     *
     * @return
     */
    public static final String showThreadInfo() {

        return "^^^^^^^^^^^^^^^^^^^^^^^ currentThread: name=" + Thread.currentThread().getName() + "  , id="
                + Thread.currentThread().getId() +

        "   ,state=" + Thread.currentThread().getState() + "   , Priority=" + Thread.currentThread().getPriority();
    }

    /**
     * sleep not catch Exception
     *
     * @param ms
     * @return
     */
    public static boolean sleep(int ms) {
        try {
            Thread.sleep(ms);
            return true;
        } catch (InterruptedException e) {
            return false;
        }
    }
}

线程工具类ThreadUtils

标签:exception   priority   info   exce   java   ret   string   return   blog   

原文地址:https://www.cnblogs.com/yang75n/p/8412963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!