Tagged Questions
1
vote
2answers
104 views
How do I share elements between ArrayList and TreeSet in Java?
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.
0
votes
1answer
155 views
Do shallow copies share pointers? (C++)
I know that if I do something like this:
class Obj
{
public:
int* nine;
};
Obj Obj1; //Awesome name
int eight = 8;
Obj1.nine = &eight;
Obj Obj2 = Obj1; //Another Awesome name
then Obj1's ...