Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
4k views

Java: Rationale of the Cloneable interface

Why wasn't the .clone() method specified in the java.lang.Cloneable interface ?
12
votes
2answers
327 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 ...
12
votes
3answers
4k views

instanceof - incompatible conditional operand types

The following compiles fine: Object o = new Object(); System.out.println(o instanceof Cloneable); But this doesn't: String s = new String(); System.out.println(s instanceof Cloneable); A ...
12
votes
7answers
3k views

How to properly override clone method?

I need to implement a deep clone in one of my objects which has no superclass. What is the best way to handle the checked CloneNotSupportedException thrown by the superclass (which is Object)? A ...
9
votes
4answers
390 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 ...
7
votes
7answers
385 views

When does it make sense for a Java object to be Serializable but not Cloneable?

If a Java class implements the Serializable interface but does not have a public clone() method, it is usually possible to create a deep copy like this: class CloneHelper { ...
6
votes
4answers
767 views

About Java cloneable

I was looking for some tutorials explaning about Java cloneable, but did not get any good links, and stackoverflow is becoming more obvious choice anyways. I would like to know the following a.) ...
6
votes
6answers
893 views

Does cloning provide a performance improvement over constructors/factory methods?

I'm maintaing an older Java code base (jvm 1.4) that seems to use cloning as an alternative to object instantiation, I'm guessing as a performance optimization. Here's a contrived example: public ...
5
votes
3answers
2k views

Confusion about cloneable interface and object.clone() in java

If I have: class foo implements Cloneable and then do: bar = new foo(); bar.clone(); I get a shallow copy without needing to write any bar.clone() code like I normally would need to do when I ...
4
votes
2answers
234 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?
3
votes
2answers
107 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?
3
votes
4answers
67 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 { ...
3
votes
4answers
3k views

The method clone() from object is not visible?

i googled abt this question, but i did not get clear answer.Might be this question may help to some of folks here also. Question : package GoodQuestions; public class MyClass { MyClass() ...
3
votes
4answers
243 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 ...
2
votes
2answers
80 views

Copy constructor v. implementing Cloneable interface

In terms of "best practices", which methodology is preferred for creating a "deep copy" of an object?
2
votes
1answer
67 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. ...
2
votes
3answers
111 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 ...
2
votes
5answers
214 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# ...
2
votes
2answers
398 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 ...
2
votes
4answers
686 views

How does object reference and cloning works in java

Below is the code ArrayList arList = someMethod();// returning ArrayList with customDO objects Now somewhere in different class I am getting data from this arList CustomDo custDO= ...
1
vote
4answers
49 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 ...
1
vote
2answers
63 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 ...
1
vote
1answer
126 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 ...
1
vote
3answers
203 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{ ...
1
vote
6answers
322 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 ...
1
vote
2answers
317 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 ...
1
vote
3answers
1k 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 ...
1
vote
2answers
66 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
352 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
251 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
91 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
253 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 ...
0
votes
0answers
31 views

Android resetPressedState exception

I've recently received a crash report in developer console and I'm having problems locating source of the problem. The stack trace doesn't include even a single call to my functions and I've got ...
0
votes
1answer
65 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
54 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
59 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 ...
0
votes
3answers
147 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
386 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 standart ...