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