码迷,mamicode.com
首页 > 其他好文 > 详细

Thread类介绍

时间:2014-08-19 10:39:54      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:使用   io   ar   art   代码   new   ad   on   

public void start()   :启动,但不一定是马上执行

public static Thread currentThread() :返回对当前正在执行的线程的对象的引用

public ClassLoader get ContextClassLoader()  :返回该线程的上下文ClassLoader。 上下文ClassLoader由线程创建者提供,供运行于该线程的代码 在加载类和资源时使用

public final boolean isAlive()

public Thread.State getState()

public final String getName()

public final void setName(String name) ; 设置该线程的名称

public final void setDaemon(boolean on)   ;  将该线程标记为守护线程或用户线程

public final void setPriority( int newPriority)  ;更改线程的优先级

public static void sleep(long mills) throws InterruptedException  ; 在指定的毫秒数内让当前正在执行的线程休眠(暂停执行)

public void interrupt();  中断线程

 

****  通常用如下代码来获取当前classpath的绝对路径  

// 使用方法链调用方式 获得当前classpath 的绝对路径的URL表示法

URL url=Thread.currentThread().getContextClassLoader().getResource("");

 

Thread类介绍,布布扣,bubuko.com

Thread类介绍

标签:使用   io   ar   art   代码   new   ad   on   

原文地址:http://www.cnblogs.com/starxingyun/p/3921282.html

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