Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリケーションでは、AbstractMapのクローンが必要です。すべての値とキーを使用してコピーしたいと思います。出来ますか?
インターフェイスの実装には、Map別のを受け入れるコンストラクターがありますMap。このようにして、元のマップを別のマップにコピーできます。
Map
多くの組み込みコレクションでオーバーライドされていない限り、AbstractMapにclone()を使用することはできません。
通常、マップをコピーする方が簡単です。
Map<K,V> map2 = new XxxxMap<K,V>(map);