首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

java 如何根据线程id找到线程(3)

java 如何根据线程id找到线程(3)

/**      * Get the thread who's lock is blocking the given thread.      * A null is returned if there is no such thread.      *      * @param   blockedThread   the blocked thread      * @return          the blocking thread, or null if      *              there is none      * @throws  NullPointerException      *              if the blocked thread is null      */
    public
static Thread getBlockingThread( final Thread blockedThread )      {          final ThreadInfo info = getThreadInfo( blockedThread );          if ( info == null )              return
null;          final
long id = info.getLockOwnerId( );          if ( id == -1 )              return
null;          return getThread( id );      }  }
继承事业,薪火相传
返回列表