Is there a particular reason why a generic ICloneable<T> does not exist?
It would be much more comfortable, if I would not need to cast it everytime I clone something.
|
Is there a particular reason why a generic It would be much more comfortable, if I would not need to cast it everytime I clone something.
| |||||||||||
feedback
|
|
ICloneable is considered a bad API now, since it does not specify whether the result is a deep or a shallow copy. I think this is why they do not improve this interface. You can probably do a typed cloning extension method, but I think it would require a different name since extension methods have less priority than original ones. | |||||||
feedback
|
|
In addition to Andrey's reply (which I agree with, +1) - when
Of course there is a second issue with a generic If I have:
And I implemented | |||||||||||
feedback
|
|
I think the question "why" is needless. There is a lot of interfaces/classes/etc... which is very usefull, but is not part of .NET Frameworku base library. But, mainly you can do it yourself.
| |||||||
feedback
|
|
It's pretty easy to write the interface yourself if you need it:
| |||||||||||||||
feedback
|
|
It's a very good question... You could make your own, though:
Andrey says it's considered a bad API, but i have not heard anything about this interface becoming deprecated. And that would break tons of interfaces... The Clone method should perform a shallow copy. If the object also provides deep copy, an overloaded Clone ( bool deep ) can be used. EDIT: Pattern i use for "cloning" an object, is passing a prototype in the constructor.
This removes any potential redundant code implementation situations. BTW, talking about the limitations of ICloneable, isn't it really up to the object itself to decide whether a shallow clone or deep clone, or even a partly shallow/partly deep clone, should be performed? Should we really care, as long as the object works as intended? In some occasions, a good Clone implementation might very well include both shallow and deep cloning. | |||||||
feedback
|