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.
私の方法では、マップされた型のリストを含むマップがあります
private static Map<String, List<String>> myMap;
MapUnsupportedOperationExceptionのメソッドを使用しようとするとスローされますclear()
UnsupportedOperationException
clear()
どうすれば空にできますか?
これを試して。
myMap = new HashMap<>();
その操作をサポートしていないマップ実装を使用しているようです (例: UnmodifiableMap)。それをデバッグして、実行時に具体的な型を確認してください。
UnmodifiableMap