The cloneable tag has no wiki summary.
1
vote
2answers
75 views
what is the point in letting my class implement Cloneable?
I came across some class code that implements Clonable, the documentation states:
A class implements the Cloneable interface to indicate to the Object.clone() method that it is legal for that ...
-4
votes
0answers
26 views
Relationship between cloning and ( mutation and immutation) in java [closed]
Please i request if anyone could explain with the help of an example the relationship between immutation and how cloning could affect it.
0
votes
3answers
83 views
Is it required to use Clonable? [closed]
I read everywhere that if I call clone() without implementing Cloneable interface I will get CloneNotSupportedException. If I implement clone method in a class which does not implement Cloneable, I ...
5
votes
2answers
92 views
Advantages of Java Cloning
I was looking for tutorials online about java cloning, but only found the disadvantages to clone() and nothing about the advantages. I would like to know some of the advantages of using Java clone().
...
0
votes
4answers
60 views
Why shouldn't an object be cloneable? [closed]
I read lots of threads about the clone() method of Object and the Cloneable Interface but I couldn't find a legitimate answer to my question.
Long story short:
What I figured out is that Object has ...
3
votes
4answers
134 views
Is the Java clone() method the only way to achieve polymorphic cloning?
I need to equip my class with polymorphic cloning (deep copy), i.e. I need something like this to work:
SuperType original = new SubType();
SuperType copy = original.clone();
where original.clone() ...
0
votes
2answers
36 views
Cannot refer to a class object A from the same class?
public class Car implements Cloneable{
private String name;
private int price;
Car(String name, int price)
{
this.name = name;
this.price = price;
}
//copy constructor 1
Car(Car a)
{
...
1
vote
0answers
51 views
how to clone a Parcel object
I want to clone a Parcel object (not parcelable).
I can't use clone() method since it is protected. I also can't call it using reflection since Parcel class doesn't implement 'clonable'
I tried to ...
0
votes
1answer
68 views
Copy/clone an object in Session
When I put an instance of a custom class into Session and then pull it out, I need it to come out as a COPY of what's in Session, not a reference to what's in Session. Here's what I have, watered ...
1
vote
4answers
120 views
super.clone() operation not works in Derived Class
This is raised because of the technical difficulties faced in my Project.
Problem:
I need to clone a Object of a Class where it extended the properties(Inheritance) from a third party library ...
2
votes
2answers
125 views
java: clone method violation
Code behind:
class A implements Cloneable
{
int i, j;
A(int i, int j)
{
this.i = i;
this.j = j;
}
A()
{
}
}
class B extends A
{
int l, m;
B()
...
0
votes
1answer
126 views
Winforms Designer: When I copy\paste my custom control, need clone instead of pointer
I have a control called "MyControl", which has an object associated with it named "SettingsObject" which is an object that contains about 15-20 properties.
I'm running into an issue where when I ...
0
votes
1answer
194 views
CloneNotSupportedException, but I never call clone()
I am getting a CloneNotSupportedException, but I cannot find anywhere in my code where I call clone(). I have looked in the Java Docs and I cannot find any reason for this exception to be thrown other ...
1
vote
1answer
201 views
Java Drag & Drop and Cloneable
I have this problem to solve where you have a JPanel and JLabel and you have to clone JLabel with drag and drop and create a JLabel clone on the JPanel where JLabel was dropped. First thing I'd like ...
1
vote
2answers
344 views
Effective Java. Clonable interface
I read Effective Java book and don't understand one paragraph where explained Clonable interface. Can someone explain me this paragraph:
...programmers assume that if they extend a class and ...
2
votes
1answer
101 views
Scala collection.mutable.Cloneable purpose
While trying to clone a mutable collection, my initial approach was to use the clone() method on the mutable.Cloneable trait. However, this defers to the java.Object.clone implementation that creates ...
11
votes
5answers
1k views
Effective Java: Analysis of the clone() method
Consider the following from Effective Java Item 11 (Override clone judiciously) where Josh Bloch is explaining what is wrong with the clone() contract .
There are a number of problems with this ...
1
vote
4answers
119 views
How can clone method be protected in Cloneable?
I have a very simple question (I guess!)
How can clone method be protected in Cloneable interface while interfaces can only declare public methods?
2
votes
2answers
92 views
Need some assistance with my logic in cloning an object
Before I posted this, I read some of the previous posts and I really don't see anything wrong with my logic. (I'm 3 hours on this already and it's probably gonna kill my happy hour) *I never want to ...
6
votes
2answers
885 views
Why does java.lang.Cloneable not override the clone() method in java.lang.Object?
The Java specification for the java.lang.Cloneable interface defines itself as signifying that any object that extends it also has implemented the clone() method that rests dormant within ...
4
votes
2answers
709 views
Copy constructor v. implementing Cloneable interface
In terms of "best practices", which methodology is preferred for creating a "deep copy" of an object?
1
vote
4answers
137 views
Under what situation an object should not be Clonable?
The basic collection interfaces (List, Map, Set) do not extend Cloneable interface. This is done in order NOT to enforce Cloneability for concrete implementations.
All of the collection classes do ...
2
votes
1answer
80 views
Serializing Begets Deep Cloning?
I was reading an article written by an ASF contributor, and he briefly mentioned that an "old Java trick" to deep clone an object is to serialize it and then deserialize it back into another object. ...
4
votes
2answers
193 views
Why is the clone() method kept in Object?
If a class is not Cloneable no object of this class can be cloned. Then why is clone() kept in the Object class and not in Cloneable interface?
2
votes
1answer
237 views
Clone an Object that I can't add ICloneable to
I am trying to create a shallow copy (new instance) of an object, without manually setting each field. This object is not a type I have the ability to modify, so I cannot go into the object and ...
0
votes
1answer
152 views
Cloneable interface in j2me
I want to implement cloneable interface but I am unable to. I am using J2me, it gives me error
create interface Cloneable in your package. As far as I know J2me allows to implement Cloneable interface ...
0
votes
3answers
166 views
Pretty HABTM List Entry
I have a Recipe, Item, and Units table/model. I have a HABTM relationship with Recipe and Item, and I get the default multiple-select box when adding/editing Recipe. (am using Bake for everything for ...
3
votes
4answers
224 views
Return type ambiguity
Consider the following code from The Java Programming Language book
public class MyClass extends HerClass implements Cloneable {
public MyClass clone()
throws CloneNotSupportedException {
...
2
votes
3answers
227 views
Java public clone interface
Is there anything bad or wrong about creating an interface like this and use it in a place i need to make sure a variable is cloneable?
public interface PublicCloneable<I> {
public I ...
1
vote
2answers
126 views
Unable to understand clone
I have a simple program to clone a object , I googled the error "Exception in thread "main" java.lang.CloneNotSupportedException:" but need your help to understand the error, why am I not able to get ...
2
votes
5answers
331 views
Has the design of marker interfaces like Java's Serializable or Cloneable evolved in C#?
Java provides java.io.Serializable and java.lang.Cloneable in his standard library (and special support for it in the language and the JVM) for tasks around deserializing/serializing/cloning.
Has C# ...
1
vote
1answer
496 views
Is there a best way to clone a model for changing just one entry?
I have a model with some fields, and I'd like to add a new entry in
the database of this model, but with changing only one field. Is there
a best way to do so, without having to create a new instance ...
2
votes
3answers
1k views
Java interface extends Cloneable
I don't understand why we can't do the following:
interface MyInterface extends Cloneable {}
class myClazz implements MyInterface {
public Object clone() { return null; }
}
class test{
...
2
votes
6answers
2k views
Cloning and Integer
I am trying to clone a object of class Integer, which does implement the cloneable inteface.
Integer a = new Integer(4);
Integer b = a.clone();
I know there are work arounds for this, but I must ...
13
votes
2answers
865 views
Serializable, cloneable and memory use in Java
I am using an inner class that is a subclass of a HashMap. I have a String as the key and double[] as the values. I store about 200 doubles per double[]. I should be using around 700 MB to store ...
1
vote
3answers
1k views
How to use Cloneable type as parameter to Java generic class
I have a generic class that needs to be able to clone objects of the parameter type. A very simple example is below. The compiler claims clone() from the type Object is not visible.
public class ...
8
votes
5answers
10k views
The method clone() from object is not visible?
I Googled this question, but I did not get clear answer.
Question:
package GoodQuestions;
public class MyClass {
MyClass() throws CloneNotSupportedException {
try {
throw ...
5
votes
4answers
6k views
Proper way to deep copy with copy constructor instead of Object.clone
I have some code that performs a deep copy using Object.clone, but I'm trying to rewrite it using the more "acceptable" copy constructor technique. Below are two simple examples of what I'm trying to ...
16
votes
5answers
8k views
About Java cloneable
I was looking for some tutorials explaning about Java Cloneable, but did not get any good links, and Stack Overflow is becoming more obvious choice anyways.
I would like to know the following:
...
1
vote
2answers
136 views
Cloning a Form in jQuery and Increasing the Index
This seems relatively simple, I'm just stumped on jQuery syntax.
Basically I want to take this form :
<div class="me_signup">
<input type="text" name="referral[0][name]" ...
1
vote
3answers
665 views
How to clone multiple inheritance object?
I have defined a Cloneable interface:
struct Cloneable
{
virtual Cloneable * clone(void) const = 0;
}
I have also some other interface classes (content not relevant to issue):
struct Interface
{
...
1
vote
6answers
660 views
Cloneable behaviour
Java doc says -
The class Object does not itself
implement the interface Cloneable, so
calling the clone method on an object
whose class is Object will result in
throwing an exception at ...
1
vote
2answers
98 views
What can I use in place of a “long” that could be cloneable?
What can I use in place of a "long" that could be cloneable?
Refer below to the code for which I'm getting an error here as long is not cloneable.
public static CloneableDictionary<string, ...
1
vote
3answers
250 views
CXF: Cloneable classes from wsdl2java?
Is it possible to have CXF's wsdl2java emit cloneable classes? Maybe via some option or a plug-in?
What I need to do is copy by value a rather complex schema structure from one object tree to ...
0
votes
1answer
1k views
Java's “clone()” method generator for Eclipse Galileo
What is the best tool for java's clone() method generation in Eclipse Galileo available from repositories?
What is the reason, that prevents Eclipse developers from including this tool in standard ...
4
votes
4answers
1k views
Implementing clone on a LinkedList
I am trying to implement a clone() method on a DoubleLinkedList. Now, the problem is that implementing it by "the convention" is a lot more troublesome than just creating a new DoubleLinkedList and ...
9
votes
4answers
727 views
What is this field-by-field copy done by Object.clone()?
In Effective Java, the author states that:
If a class implements Cloneable,
Object's clone method returns a
field-by-field copy of the object;
otherwise it throws
...
1
vote
3answers
462 views
Question about the Cloneable interface and the exception that should be thrown
The Java documentation says:
A class implements the Cloneable
interface to indicate to the
Object.clone() method that it is
legal for that method to make a
field-for-field copy of ...
2
votes
2answers
656 views
Implementing Clonable in Java
In which cases should I use this way:
public A clone() throws CloneNotSupportedException {
A clone = (A)super.clone();
clone.x= this.x;
return clone;
}
And in which cases should I use ...
4
votes
2answers
493 views
How is Object[] cloneable
Object[] o = new Object[]{};
System.out.println(o instanceof Cloneable);
This gives true as o/p. I could not understand why?



