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
|
|
I need to ask, what exactly would you do with the interface other than implement it? Interfaces are typically only useful when you cast to it (ie does this class support 'IBar'), or have parameters or setters that take it (ie i take an 'IBar'). With ICloneable - we went through the entire Framework and failed to find a single usage anywhere that was something other than an implementation of it. We've also failed to find any usage in the 'real world' that also does something other than implement it (in the ~60,000 apps that we have access to). Now if you would just like to enforce a pattern that you want your 'cloneable' objects to implement, that's a completely fine usage - and go ahead. You can also decide on exactly what "cloning" means to you (ie deep or shallow). However, in that case, there's no need for us (the BCL) to define it. We only define abstractions in the BCL when there is a need to exchange instances typed as that abstraction between unrelated libraries. David Kean (BCL Team) | |||||||||
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
|