Top


定義場所(file name)

jdk/src/share/classes/java/lang/management/ThreadInfo.java

説明(description)

    /**
     * Returns the total number of times that
     * the thread associated with this <tt>ThreadInfo</tt>
     * blocked to enter or reenter a monitor.
     * I.e. the number of times a thread has been in the
     * {@link java.lang.Thread.State#BLOCKED BLOCKED} state.
     *
     * @return the total number of times that the thread
     * entered the <tt>BLOCKED</tt> state.
     */

名前(function name)

    public long getBlockedCount() {

本体部(body)

  {- -------------------------------------------
  (1) blockedCount フィールドの値をリターンするだけ.
      ---------------------------------------- -}

            return blockedCount;
        }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.