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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -