Why doesn't Java support a copy constructor like in C++?
feedback
|
|
Java does. They're just not called implicitly like they are in C++ and I suspect that's your real question. Firstly, a copy constructor is nothing more than:
Now C++ will implicitly call the copy constructor with a statement like this:
Cloning/copying in that instance simply makes no sense in Java because all b1 and b2 are references and not value objects like they are in C++. In C++ that statement makes a copy of the object's state. In Java it simply copies the reference. The object's state is not copied so implicitly calling the copy constructor makes no sense. And that's all there is to it really. | |||||||||||||||||||
feedback
|
|
From Bruce Eckel:
(I recommend reading the entire page -- actually, start here instead.) | |||
|
feedback
|
|
I think the answer to this is very interesting. For one, I believe that in Java all objects are on the heap, and while you don't have pointers, you do have "References". References have copy symantics and java internally keeps track of reference counts so that it's garbage collector knows whats safe to get rid of. Since you only access objects through copyable references, the actual number of times you need to copy an object is greatly reduced (for example, in C++ just passing an object to a function (by value) results in new objects being copy constructed, in Java only the reference to the object is passed). The designers probably figured that clone() would be enough for the remaining uses. | |||||||||||
feedback
|
|
This is just my opinion (I am sure there is a justifiable answer) Copy constructors in C++ are primarily useful when you are sending or returning instances of classes by value, since that is when the copy constructor is transparently activated. Since in Java everything is returned by reference, and the VM is geared towards dynamic allocation, there really wasn't a justification for the complexities of a copy constructor. In addition, since everything is by reference, a developer would often have to provide their own implementation and decision on how to clone fields. | |||
|
feedback
|
|
It kind of does. When shallow copies are okay you have clone() and when they aren't you have to implement a deep copy just like C++. The only substantive difference is that it's a factory method rather than a constructor proper, but in terms of flexibility and testability that's probably a good thing. | |||
|
feedback
|
|
I'm not much of a C++ programmer, but I do seem to remember a rule about the "three amigos" - copy constructor, assignment operator, and destructor. If you have one, then you likely need all three. So maybe without a destructor in the language, they didn't want to include a copy constructor? Just a guess. | |||||||
feedback
|