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

I'm creating a class called, and it the class's constructor, I must create a secondary thread and execute the class's add method on the secondary followed by the primary thread. My question is, how do I go about creating a secondary thread and then explicitly call add() on each separate thread?

Below is the code I'm working with.

public JCFAcc(){
    // secondary thread created
    // thread executes addElements()
    // primary thread executes addElements()
    // when the adds complete, join() 2ndary to primary
    //output size of collection and its contents
}

private void addElements(int count){

    for(int i=0; i<count; i++){
        alist.add(i);
    }
}
share|improve this question
Is this Java? It looks like it, but you haven't said. How much have you read up on threading so far? Any tutorials? Where exactly are you stuck? – Jon Skeet Dec 11 '12 at 14:46
Yes, it is Java, sorry I forgot to mention that. I have read up on threading, I'm just a little unsure how to spawn a new thread that I can call addElements on. – user1795374 Dec 11 '12 at 16:07

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.