Regarding memory leak

I am using clone() metod for vectors. I am doing this in a loop sleeping for 1 minute. Doing cloning will cause any memory leak? If not ,whta are the possible causes for memory leak?
[189 byte] By [sudheer_rajua] at [2007-11-26 19:57:11]
# 1
> If not ,whta are the> possible causes for memory leak?Creating objects without ever releasing them again.
CeciNEstPasUnProgrammeura at 2007-7-9 22:51:44 > top of Java-index,Java Essentials,Java Programming...
# 2

> I am using clone() metod for vectors. I am doing

> this in a loop sleeping for 1 minute. Doing cloning

> will cause any memory leak?

It shouldn't

> If not ,whta are the

> possible causes for memory leak?

You are still referencing old objects, or you are keeping resources open. e.g. connections, streams etc.

kajbja at 2007-7-9 22:51:44 > top of Java-index,Java Essentials,Java Programming...