I want to modify the elements of the ArrayList and TreeSet simultaneously.

Ex. When I modify an element from the TreeSet, the corresponding element in the Arraylist is modified too.

link|improve this question
1  
not sure why this got a downvote. it might show that the user doesn't entirely understand references in java, it probably doesn't deserve a -1. – John Gardner Jul 11 '11 at 18:19
feedback

2 Answers

In Java, objects in collections are stored with their references. Therefore if you modify an object, it will be updated on everywhere it is referenced from. You shouldn't be concerned about that.

In order to use both synchronized you should implement a new class, here's the template:

class MyCollection{
    private TreeSet treeSet;
    private ArrayList arrayList;

    public synchronized void add(Object o){
        treeSet.add(o);
        arrayList.add(o);
    }
}

Things I considered above:

  • Inner collections kept private, least privilege principle.
  • synchronized keyword to provide consistent multithreaded concurrency.

Things I haven't considered above:

  • Generic types
  • add method should return boolean as all java Collections do.

You should implement your own code for better solution, but generally, that's the idea.

EDIT: Another solution is to write your own TreeSet and ArrayList wrappers (that uses treeset and arraylist underneath) and when something is added, since you'll override that add() method, you can add the other thing. But this is not a loose coupling practice. Maybe there's another solution with Observer Framework.

link|improve this answer
feedback

As long as you're adding the same object to both, this is exactly what should happen. (Am I missing something?)

link|improve this answer
this is not an answer, should be a comment. -1 – ahmet alp balkan Jul 11 '11 at 17:05
1  
And by the way, your answer is basically saying exactly the same thing as mine... – aardvarkk Jul 11 '11 at 17:08
@ahmet Better to flag an answer as "not an answer" if that is the case. Incidentally, I think this is an answer, albeit a one-liner. – razlebe Jul 11 '11 at 17:17
i agree with razlebe. while not extremely verbose, it is a valid answer. – John Gardner Jul 11 '11 at 18:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.