Board logo

标题: java 如何根据线程id找到线程(3) [打印本页]

作者: yuyang911220    时间: 2017-1-25 20:22     标题: 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 );      }  }




欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) Powered by Discuz! 7.0.0