背景之前我们可能会遇到一些把List 转 Map 操作,在过去我们可能使用的是 for 循环遍历的方式。
例如:
Map<String, String> map = new HashMap<>();
for (User us
2022-03-29