1

スレッドプールの概念に多くの時間を費やし、多数のブログでさまざまなコードを読んだり、Stackoverflow.com に質問を投稿したりした結果、この概念の明確なイメージが得られました。しかし、その間、コードにいくつかの疑問が見つかりました。

  1. pool.assign (new TestWorkerThread()); の場合 TestThreadPool クラスで実行され、 done.workerBegin();が呼び出されます。Done Classにあるメソッドで、_activeThreads変数をインクリメントします。しかし、私が考えているのは、スレッドの数(この場合は2)がタスクの数( TestThreadPool Classで指定)(この場合は5)よりも少ない場合、 _activeThreads (つまり、_activeThreads = 5 )が増加するため、 LOGICALLYは正しくありません) は不必要にカウントされます。

  2. Done クラスで_started変数は何をしますか?

  3. ( Done Class内の) waitDone()waitBegin( ) はどのように機能しますか? (この2つの方法を順を追って説明するとよいでしょう。)

コードは次のとおりです。その流れに沿ってコードを並べています。

TestThreadPool クラス :-

package hitesh;

/**
 *
 * @author jhamb
 */

public class TestThreadPool {

 public static void main(String args[]) throws InterruptedException
 {
  ThreadPool pool = new ThreadPool(2);

  for (int i = 1;i <= 5;i++) {
   pool.assign(new TestWorkerThread());
  }
  System.out.println("All tasks are assigned");

  pool.complete();

  System.out.println("All tasks are done.");
 }
}

TestWorkerThread クラス :-

package hitesh;

/**
 *
 * @author jhamb
 */
/**
 * This class shows an example worker thread that can
 * be used with the thread pool. It demonstrates the main
 * points that should be included in any worker thread. Use
 * this as a starting point for your own threads.
 */

public class TestWorkerThread implements Runnable {
 static private int count = 0;
 private int taskNumber;
 protected Done done;

 /**
  * 
  * @param done
  */
 TestWorkerThread()
 {
  count++;
  taskNumber = count;
  //System.out.println("tasknumber  --->  " + taskNumber);
 }

 public void run()
 {
  System.out.println("TWT run starts   -->  "  + this.toString());
  for (int i=0;i <= 100;i += 25) {
   System.out.println("Task number: " + taskNumber + 
             ",percent complete = " + i );
   try {
    Thread.sleep((int)(Math.random()*500));
   } catch (InterruptedException e) {
   }
  }
  System.out.println("task for thread --> " + this.toString() + "   completed");
 }
}

ThreadPool クラス :-

package hitesh;

/**
 *
 * @author jhamb
 */
import java.util.*;


/* 
 * This is the main class for the thread pool. You should
 * create an instance of this class and assign tasks to it.
 */

public class ThreadPool {

 protected Thread threads[] = null;

 Collection assignments = new ArrayList(3);

 protected Done done = new Done();


 public ThreadPool(int size) throws InterruptedException
 {
   threads = new WorkerThread[size];
   for (int i=0;i<threads.length;i++) {
    threads[i] = new WorkerThread(this);
    threads[i].start();
    System.out.println ("thread " + i + " started");
    threads[i].sleep(1000);
  }

 }

 public synchronized void assign(Runnable r)
 {
  done.workerBegin();
  assignments.add(r);
  System.out.println("Collection size --->   " + assignments.size() +   "  Thread can work on this");
  notify();
 }

 public synchronized Runnable getAssignment()
 {
  try {
   while ( !assignments.iterator().hasNext() )
    wait();

   Runnable r = (Runnable)assignments.iterator().next();
   assignments.remove(r);
   return r;
  } catch (InterruptedException e) {
   done.workerEnd();
   return null;
  }
 }

 public void complete()
 {   
  done.waitBegin();
  done.waitDone();
 }

}

WorkerThread クラス :-

package hitesh;
import java.util.*;
/**
 *
 * @author jhamb
 */

/**
 * The worker threads that make up the thread pool.
 */
class WorkerThread extends Thread {
 /**
  * True if this thread is currently processing.
  */
 public boolean busy;
 /**
  * The thread pool that this object belongs to.
  */
 public ThreadPool owner;

 /**
  * The constructor.
  * 
  * @param o the thread pool 
  */
 WorkerThread(ThreadPool o)
 {
  owner = o;
 }

 /**
  * Scan for and execute tasks.
  */
    //@Override
 public void run()
 {
  System.out.println("Threads name : "+ this.getName() + "  working.....");
  Runnable target = null;

  do {
   System.out.println("enter in do while " + this.getName() );
   target = owner.getAssignment();
   System.out.println("GetAssignment k aage aa gya mai "  +  target);
   if (target!=null) {
    target.run();
    //target.
    owner.done.workerEnd();
   }
  } while (target!=null);
  System.out.println("do while finishes for "+ this.getName());
 }
}

完了クラス:-

package hitesh;

/**
 *
 * @author jhamb
 */
/**
 * 
 * This is a thread pool for Java, it is
 * simple to use and gets the job done. This program and
 * all supporting files are distributed under the Limited
 * GNU Public License (LGPL, http://www.gnu.org).
 * 
 * This is a very simple object that
 * allows the TheadPool to determine when 
 * it is done. This object implements
 * a simple lock that the ThreadPool class
 * can wait on to determine completion.
 * Done is defined as the ThreadPool having
 * no more work to complete.
 * 
 * Copyright 2001 by Jeff Heaton
 *
 * @author Jeff Heaton (http://www.jeffheaton.com)
 * @version 1.0
 */
public class Done {

 /**
  * The number of Worker object
  * threads that are currently working
  * on something.
  */
 private int _activeThreads = 0;

 /**
  * This boolean keeps track of if
  * the very first thread has started
  * or not. This prevents this object
  * from falsely reporting that the ThreadPool 
  * is done, just because the first thread
  * has not yet started.
  */
 private boolean _started = false;
 /**
  * This method can be called to block
  * the current thread until the ThreadPool
  * is done.
  */

 synchronized public void waitDone()
 {
  try {
   while ( _activeThreads>0 ) {
    wait();
   }
  } catch ( InterruptedException e ) {
  }
 }
 /**
  * Called to wait for the first thread to 
  * start. Once this method returns the
  * process has begun.
  */

 synchronized public void waitBegin()
 {
  try {
   while ( !_started ) {
    wait();
   }
  } catch ( InterruptedException e ) {
  }
 }


 /**
  * Called by a Worker object
  * to indicate that it has begun 
  * working on a workload.
  */
 synchronized public void workerBegin()
 {
  _activeThreads++;
  _started = true;
  notify();
 }

 /**
  * Called by a Worker object to 
  * indicate that it has completed a 
  * workload.
  */
 synchronized public void workerEnd()
 {
  _activeThreads--;
  notify();
 }

 /**
  * Called to reset this object to
  * its initial state.
  */
 synchronized public void reset()
 {
  _activeThreads = 0;
 }

}

助けてください。前もって感謝します。あなたの親切な対応を求めています。

4

1 に答える 1

0

これで、コード全体が非常に完全に理解できました。このコードに疑問がある場合は、質問することができます。

これをよく読んだ後の私の質問の答えは次のとおりです。

  1. はい、あなたは正しいです、それは論理的に間違っています。_activeTasksの場合は、より良いです。waitDone()関数は、_activeTasks <= 0の場合にのみ正常に実行されるため、threadpoolに作業がなくなったときに、すべてのスレッドを強制終了するために使用されます。

  2. この変数は、waitBegin()メソッドで使用されます。タスクが開始されるたびに、_started by TRUEが更新されます。これは、ユーザーによって割り当てられたタスクがスレッドによって処理されていることを意味し、スレッドがこれらのタスクの処理を開始することを意味します。タスクがユーザーによって指定されていない場合、すべてのスレッドはまだアクティブであり、タスクを待機しています。これは、ここでのこの変数の使用法です。

  3. waitBegin()メソッドは、スレッドがタスクの処理を開始すると正常に実行されます。その場合、_startedのみがtrueになるためです。それ以外の場合、スレッドはいくつかのタスクを待機し続けます。waitDone()は、_activeTasksがゼロになった場合にのみ正常に実行されます。これは、スレッドプールに実行する作業がない唯一の状況であり、スレッドプールがその作業を完了することを意味します。それ以外の場合は、すべてのタスクが終了するまで待機し続けます。つまり、_activeTasksがゼロになるまで待機します。

于 2013-01-28T12:34:41.887 に答える