I was trying to do a Threadpool program in which i need to create a fixed no,of threads and allocate each thread to each process.Each of my process are written as different java classes:AdditionThread.jav,SubtractionThread.java,MultiplicationThread.java. Below given is my AdditionThread.java class(other classes a just similar). I have a ThreadpoolExcecutorPgm.java which is supposed to allocate and deallocate threads to all the processes. But i am not able to get my desired result... Below given is my code..Can anyone please help me ...?I am also not very much sure about the way i have used to implement my requirement..Any help would be appreciable...
public class SubtractionThread implements Runnable{
public int a;
public int b;
public SubtractionThread()
{
this.a=5;
this.b=10;
}
public static void main(String[] args) {
new Thread(new SubtractionThread()).start();
}
@Override
public void run() {
int c = a-b;
System.out.println(c);
}
}
ThreapoolExcecutorPgm.java
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
public class ThreadpoolExcecutorPgm {
int poolsize =3;
int maxpoolsize=3;
long keepAliveTime=10;
static ThreadPoolExecutor tp =null;
final static ArrayBlockingQueue<Runnable> queue =new ArrayBlockingQueue<Runnable>(5);
public ThreadpoolExcecutorPgm()
{
tp= new ThreadPoolExecutor(poolsize,maxpoolsize,keepAliveTime,null, queue);
}
public void shutDown()
{
tp.shutdown();
}
public static void main(String[] args) {
AdditionThread Addthread = new AdditionThread();
SubtractionThread Subthread =new SubtractionThread();
tp.execute(Addthread) ;
}
}
tpis null. This would happen even in a program without threads. Are you getting this or another error? What happens when you look at the time of code which reports the error? – Peter Lawrey Feb 7 '11 at 14:34