API解读:Thread

小猪猪552211

小猪猪552211

2016-02-19 14:16

下面图老师小编要跟大家分享API解读:Thread,简单的过程中其实暗藏玄机,还是要细心学习,喜欢还请记得收藏哦!

  线程是一个和平台关系比较密切的概念,这里我们也不能看出它的具体实现,只能看一下它的表现了.

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)

  public class Thread implements Runnable

  public final static int MIN_PRIORITY = 1;
  public final static int NORM_PRIORITY = 5;
  public final static int MAX_PRIORITY = 10;
  //以上三个是表示线程的优先级的,默认的都是和父线程具有相同的优先级
  public static native Thread currentThread();
  //获得当前运行线程的线程实例,注重这是个静态方法
  public static native void yield();
  //当前线程主动放弃执行,让其他线程可以运行,这个是雷锋精神
  public static native void sleep(long millis) throws InterruptedException;
  //当前线程自己休眠一会儿,过了这段时间后重新回到可执行状态,有时候为了等别人就自己先睡一会儿
  //不过这一觉睡多长时间是比较难确定的
  public static void sleep(long millis, int nanos) throws InterruptedException
  //这个方法有点多余,把后面的纳秒四舍五入而已,最终的效果或者是sleep(millis)和sleep(millis+1).

  构造函数
  public Thread();
  public Thread(Runnable target)//这个是最常用的构造函数
  public Thread(ThreadGroup group, Runnable target)//不是很关心输入哪个线程组
  public Thread(String name) //我们似乎不关心线程的名字
  public Thread(ThreadGroup group, String name)
  public Thread(Runnable target, String name)
  public Thread(ThreadGroup group, Runnable target, String name)
  public Thread(ThreadGroup group, Runnable target, String name,long stackSize)
  public synchronized native void start();
  //运行线程用start方法,不知道里面怎么实现了,不过会调用run方法
  public void run() {
  if (target != null) {
  target.run();
  }
  }
  可以看出,假如没有target参数,这个线程什么也不做.

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)

  //下面几个方法已经不用了,我也不是很清楚为什么,也不用去管这个了.
  public final void stop()
  public final synchronized void stop(Throwable obj)
  public final void suspend()
  public final void resume()

  
  public void interrupt()
  //中断这个线程,这个方法除了设置中断状态位,不知道还做了什么

  public static boolean interrupted() {
  return currentThread().isInterrupted(true);
  }
  //是否被中断,重置中断状态
  public boolean isInterrupted() {
  return isInterrupted(false);
  }
  //是否被中断
  private native boolean isInterrupted(boolean ClearInterrupted);
  
  public void destroy() {
  throw new NoSUChMethodError();
  }
  public final native boolean isAlive();
  //线程是否还活着,出生了但还没死

  
  public final void setPriority(int newPriority)
  public final void setName(String name)
  public final String getName()
  public final ThreadGroup getThreadGroup()
  public static int activeCount() //获得当前线程组获得线程数
  public static int enumerate(Thread tarray[]) //将活动线程拷贝到一个数组
  public native int countStackFrames();
  public final synchronized void join(long millis) throws InterruptedException//等待这个线程死,这个家伙没有耐心,过了一段时间就不等了.
  public final synchronized void join(long millis, int nanos) throws InterruptedException //没什么用的方法
   public final void join() throws InterruptedException //这个家伙很有耐心,为了拿遗产,一直等着他老爸死才肯罢休.
  
  public final void setDaemon(boolean on)
  public final boolean isDaemon()
  public final void checkAccess() //这个似乎不应该public
  public String toString()
  

展开更多 50%)
分享

猜你喜欢

API解读:Thread

编程语言 网络编程
API解读:Thread

java Thread 多线程

编程语言 网络编程
java Thread 多线程

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

解读VC++编程中的文件操作API和CFile类

编程语言 网络编程
解读VC++编程中的文件操作API和CFile类

Android Thread 介绍与实例

编程语言 网络编程
Android Thread 介绍与实例

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

[JAVA100例]060、继承Thread

编程语言 网络编程
[JAVA100例]060、继承Thread

java thread start()和run()方法简析

编程语言 网络编程
java thread start()和run()方法简析

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

js代码解密

js代码解密

Delphi图象截取编程示例(1)

Delphi图象截取编程示例(1)
下拉加载更多内容 ↓