Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)  ;

    }

}
share|improve this question
1  
You haven't said what the desired result should be. I would expect this to throw a NullPointerException as your tp is 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
Yes,Peter as you said ,i am getting a NullPointerException. My desired result is the output of AdditionThread and SubtractionThread.ie 15 and -5 – vidhya Feb 8 '11 at 5:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.