vote up 0 vote down star

I am trying to grab an object from an array list and copy it to another array list.

as per a request

public abstract class codeType{
    stuff
}

public class drawOval extends codeType{

}

main{
    arrayList<codeType> a
    arrayList<codeType> b

    a.add(new drawOval(stuff))

    a.add(new drawOval(other Stuff))

    b.add(a.get(0).clone) //or something like that

}

That does not work but I am looking for something like that.

flag

5 Answers

vote up 0 vote down check

I assume by abstract object you mean the Object which is root of the class hierarchy,Object does not itself implement the interface Cloneable which will result in run time exception. could you post some code and detail on what you mean by does not work. As uri suggested its not a good idea to invoke clone if you are in doubt.avoid clone.

link|flag
vote up 1 vote down

x.clone is not a function call. You need x.clone()

Also, there is no such thing as an Abstract Object in Java, your first line will not compile either.

Cloning is a fairly dangerous mechanism, by the way, but make sure you get the syntax first.

link|flag
x.clone is sudo code as well as Abstract Object. – Jason May 4 at 0:20
Even if he put in the parentheses it will not work, as his class does not have a public clone method. – newacct May 4 at 6:20
vote up 0 vote down

Perhaps it's because you don't have parentheses in your clone call? Should be x.clone().

If that's not it, you need to be a lot more specific about what "dose not work" means.

link|flag
vote up 0 vote down

Abstract classes don't produce "abstract objects". Abstract classes are classes with at least an abstract method, which is a method without body. When you extend an abstract class you are forced to implement those methods. Think of them just as a common API for your objects.

link|flag
vote up 0 vote down

You should serialize the object and then de-serialize it.

link|flag

Your Answer

Get an OpenID
or

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