If a class implemented ICloneable, what does that mean?
|
feedback
|
|
That is has the To sum it up, it does not offer much hard promises, but the intent is to create independent clones. | |||
|
feedback
|
|
It just means that the class must implement a method | |||||||||
feedback
|
|
Basically, it just allows the class to be cloned: http://msdn.microsoft.com/en-us/library/system.icloneable.aspx When implementing any interface, you are required to define the methods in that interface. In this case, the Clone method will need to be defined in your class. Example from Microsoft:
| |||||
feedback
|
|
ICloneable is not meaningful by itself, but may be useful in conjunction with other constraints (e.g. one could provide that a parameter must be a Foo that implements ICloneable). Thus, one could have a Foo, a CloneableFoo, an AdvancedFoo, and a CloneableAdvancedFoo, allowing Foo derivatives that support cloning to be distinguished from those that do not, but also allowing routines that expect a cloneable Foo to accept a cloneable derivative of Foo. Unfortunately, while a function parameter passed with IClonable and Foo constraints may be used as an IClonable and as a Foo, without typecasts, there's no way to create a field meeting such criteria, nor is there any way to typecast a field. A remedy for this may be to create an ICloneable(Of T As ICloneable(Of T)), which contains a "Clone" method that returns T, and a "Self" method which also returns T (Thus, a field holding an "ICloneable Of Foo" could be accessed as a Foo via the "Self" method). A little care would be needed to make this all work, but the pattern should be quite nice. | |||
|
feedback
|
Clone:class Foo : ICloneable { public int Value { get; private set; } public Foo(int value) { this.Value = value; } public object Clone() { return "Hello, World!"; } }Interfaces say nothing about behavior, they only tell you about the existence of a method with a given signature and return type. The intent is that the method return a clone (either shallow or deep) or the object, but it does not promise that. – Jason Nov 28 '10 at 14:51