java - LinkedHashMap<String,Object>.clone(); -


does above command produce deep copy of linkedhashmap's elements?

in java, clone() shallow. 2 reasons:

  1. performance
  2. not every object defines working clone() method, deep copying isn't possible.

Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -