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.

link|improve this question

3  
No! with all due respect to the 'reasons', I agree with you, they should have implemented it! – Shimmy Jan 13 '10 at 0:53
It would have been a nice thing for Microsoft to have defined (the problem with brew-your-own interfaces is that interfaces in two different assemblies will be incompatible, even if they're semantically identical). Were I designing the interface, it would have three members, Clone, Self, and CloneIfMutable, all of which would return a T (the last member would either return Clone or Self, as appropriate). The Self member would make it possible to accept an ICloneable(of Foo) as a parameter and then use it as a Foo, without need for a typecast. – supercat Jan 12 '11 at 17:17
That would allow for a proper cloning class hierarchy, where inheritable classes expose a protected "clone" method, and have sealed derivatives that expose a public one. For example, one could have Pile, CloneablePile:Pile, EnhancedPile:Pile, and CloneableEnhancedPile:EnhancedPile, none of which would be broken if cloned (even though not all expose a public cloning method), and FurtherEnhancedPile:EnhancedPile (which would be broken if cloned, but doesn't expose any cloning method). A routine that accepts an ICloneable(of Pile) could accept a CloneablePile or a CloneableEnhancedPile... – supercat Jan 12 '11 at 17:26
...even though CloneableEnhancedPile does not inherit from CloneablePile. Note that if EnhancedPile inherited from CloneablePile, FurtherEnhancedPile would have to expose a public cloning method and could be passed to code that would expect to Clone it, violating the Liskov Substitutability Principle. Since CloneableEnhancedPile would implement ICloneable(Of EnhancedPile) and by implication ICloneable(Of Pile), it could be passed to a routine expecting a cloneable derivative of Pile. – supercat Jan 12 '11 at 17:30
feedback

6 Answers

up vote 37 down vote accepted

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.

link|improve this answer
I disagree, bad or not bad, it's very useful sometime for SHALLOW clonning, and in those cases is really needed the Clone<T>, to save an unnecessary boxing and unboxing. – Shimmy Jan 13 '10 at 0:51
Is there a good alternative to this? – Merlyn Morgan-Graham Jan 14 '11 at 18:04
@Merlyn I think it should be a separate question. One answer may be BinaryFormatter Serialize/Deserialize for deep cloning, but it really depends on task, required performance, etc. – Andrey Shchekin Jan 23 '11 at 10:22
feedback

In addition to Andrey's reply (which I agree with, +1) - when ICloneable is done, you can also choose explicit implementation to make the public Clone() return a typed object:

public Foo Clone() { /* your code */ }
object ICloneable.Clone() {return Clone();}

Of course there is a second issue with a generic ICloneable<T> - inheritance.

If I have:

public class Foo {}
public class Bar : Foo {}

And I implemented ICloneable<T>, then do I implement ICloneable<Foo>? ICloneable<Bar>? You quickly start implementing a lot of identical interfaces... Compare to a cast... and is it really so bad?

link|improve this answer
+1 I always thought that the covariance problem was the real reason – DrJokepu Feb 11 '09 at 11:31
There is a problem with this: the explicit interface implementation must be private, which would cause problems should Foo at some point need to be cast to ICloneable... Am I missing something here? – Joel in Gö Mar 26 '09 at 10:33
Why would that pose a problem, exactly? I don't follow your logic... – Marc Gravell Mar 26 '09 at 11:06
My mistake: it turns out that, despite being defined as private, the method will be called should Foo be cast to IClonable (CLR via C# 2nd Ed, p.319). Seems like an odd design decision, but there it is. So Foo.Clone() gives the first method, and ((ICloneable) Foo).Clone() gives the second method. – Joel in Gö Mar 26 '09 at 12:51
Actually, explicit interface implementations are, strictly speaking, part of the public API. In that they are callable publicly via casting. – Marc Gravell Mar 26 '09 at 12:58
show 6 more comments
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.

public interface ICloneable<T> : ICloneable {
    new T Clone();
}

public abstract class CloneableBase<T> : ICloneable<T> where T : CloneableBase<T> {
    public abstract T Clone();
    object ICloneable.Clone() { return this.Clone(); }
}

public abstract class CloneableExBase<T> : CloneableBase<T> where T : CloneableExBase<T> {
    protected abstract T CreateClone();
    protected abstract void FillClone( T clone );
    public override T Clone() {
        T clone = this.CreateClone();
        if ( object.ReferenceEquals( clone, null ) ) { throw new NullReferenceException( "Clone was not created." ); }
        return clone
    }
}

public abstract class PersonBase<T> : CloneableExBase<T> where T : PersonBase<T> {
    public string Name { get; set; }

    protected override void FillClone( T clone ) {
        clone.Name = this.Name;
    }
}

public sealed class Person : PersonBase<Person> {
    protected override Person CreateClone() { return new Person(); }
}

public abstract class EmployeeBase<T> : PersonBase<T> where T : EmployeeBase<T> {
    public string Department { get; set; }

    protected override void FillClone( T clone ) {
        base.FillClone( clone );
        clone.Department = this.Department;
    }
}

public sealed class Employee : EmployeeBase<Employee> {
    protected override Employee CreateClone() { return new Employee(); }
}
link|improve this answer
Typo - s/clonse/clone – David Gardiner Jun 23 '10 at 6:01
@David Gardiner: Corrected, thanks. – TcKs Jun 23 '10 at 11:20
Any workable clone method for an inheritable class must use Object.MemberwiseClone as a starting point (or else use reflection) since otherwise there's no guarantee that the clone will be the same type as the original object. I have a pretty nice pattern if you're interested. – supercat Oct 22 '10 at 22:25
feedback

It's pretty easy to write the interface yourself if you need it:

public interface ICloneable<T> : ICloneable
        where T : ICloneable<T>
{
    new T Clone();
}
link|improve this answer
1  
Easy enough to include in the answe...oh, wait... – Jeff Yates Feb 11 '09 at 14:59
1  
I'd rather link it to respect the copyright... – Mauricio Scheffer Feb 11 '09 at 15:06
I included a snippet since because of the honor of the copy-rights the link was broken... – Shimmy Jan 12 '10 at 16:37
2  
And how exactly is that interface supposed to work? For the result of a clone operation to be castable to type T, the object being cloned has to derive from T. There's no way to set up such a type constraint. Realistically speaking, the only thing I can see the result of iCloneable returning is a type iCloneable. – supercat Oct 16 '10 at 22:17
@supercat: yes, that's exactly what Clone() returns: a T which implements ICloneable<T>. MbUnit has been using this interface for years, so yes, it works. As for the implementation, take a peek into MbUnit's source. – Mauricio Scheffer Oct 17 '10 at 2:14
show 2 more comments
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)

link|improve this answer
Non-generic ICloneable isn't very useful, but ICloneable<out T> could be quite useful if it inherited from ISelf<out T>, with a single method Self of type T. One doesn't often need "something that's cloneable", but one may very well need a T that's cloneable. If a cloneable object implements ISelf<itsOwnType>, a routine that needs a T that's cloneable can accept a parameter of type ICloneable<T>, even if not all of the cloneable derivatives of T share a common ancestor. – supercat Mar 1 at 0:30
Thanks. That's similar to cast situation I mentioned above (ie 'does this class support 'IBar'). Sadly, we've only come up with very limited and isolated scenarios where you would actually make use of the fact that T is cloneable. Do you have situations in mind? – David Kean Mar 1 at 3:57
One thing that's sometimes awkward in .net is managing mutable collections when the contents of a collection are supposed to be viewed as a value (i.e. I will want to know later the set of items that are in the collection now). Something like ICloneable<T> could be useful for that, though a broader framework for maintaining parallel mutable and immutable classes might be more helpful. In other words, code which needs to see what some type of Foo contains but is neither going to mutate it nor expect that it won't ever change could use an IReadableFoo, while... – supercat Mar 1 at 5:18
...code which wants to hold the contents of Foo could use an ImmutableFoo while code that to wants to manipulate it could use a MutableFoo. Code given any type of IReadableFoo should be able to get either a mutable or immutable version. Such a framework would be nice, but unfortunately I can't find any nice way to set things up in a generic fashion. If there were a consistent way to make a read-only wrapper for a class, such a thing could be used in combination with ICloneable<T> to make an immutable copy of a class which holds T'. – supercat Mar 1 at 5:24
feedback

It's a very good question... You could make your own, though:

interface ICloneable<T> : ICloneable
{
  new T Clone ( );
}

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.

class C
{
  public C ( C prototype )
  {
    ...
  }
}

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.

link|improve this answer
"bad" does not mean deprecated. It simply mean "you're better off not using it". It's not deprecated in the sense that "we'll remove the ICloneable interface in the future". They just encourage you not to use it, and won't update it with generics or other new features. – jalf Feb 11 '09 at 11:22
Dennis: See Marc's answers. Covariance / inheritance issues make this interface pretty much unusable for any scenario that is at least marginally complicated. – DrJokepu Feb 11 '09 at 11:33
Yea, i can see the limitations of ICloneable, for sure... I rarely need to use cloning, though. – baretta Feb 11 '09 at 12:07
feedback

Your Answer

 
or
required, but never shown

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