私は持っていHashmap <integer, Arraylist<Double>>
ます。コピーしたいのですが。clone
ハッシュマップの方法を考えていました。javadocを調べた後、次のように表示されます。
clone
Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned.
この浅いコピーはどういう意味ですか?元の行列の値を更新している間、値が変更されない別の行列が必要です。
さらに、なぜですか、
if( hm1 == hm1.clone())
falseを返しますか?