{"id":598,"date":"2019-08-11T15:09:12","date_gmt":"2019-08-11T07:09:12","guid":{"rendered":"http:\/\/prayerlaputa.com\/?p=598"},"modified":"2019-08-11T15:09:12","modified_gmt":"2019-08-11T07:09:12","slug":"java%e4%b8%89%e7%a7%8d%e6%96%b9%e6%b3%95%e5%b0%86list%e8%bd%ac%e6%8d%a2%e4%b8%bamap%e7%9a%84%e5%ae%9e%e4%be%8b%e3%80%90%e8%bd%ac%e8%bd%bd%e3%80%91","status":"publish","type":"post","link":"http:\/\/prayerlaputa.com\/?p=598","title":{"rendered":"Java\u4e09\u79cd\u65b9\u6cd5\u5c06List\u8f6c\u6362\u4e3aMap\u7684\u5b9e\u4f8b\u3010\u8f6c\u8f7d\u3011"},"content":{"rendered":"<p>\u539f\u6587\u94fe\u63a5\uff1ahttps:\/\/www.jb51.net\/article\/149605.htm<\/p>\n<h1 class=\"YaHei\">Java\u4e09\u79cd\u65b9\u6cd5\u5c06List\u8f6c\u6362\u4e3aMap\u7684\u5b9e\u4f8b<\/h1>\n<p>1.for\u5faa\u73af<!--more--><\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\n&lt;pre class=&quot;brush:java;&quot;&gt;import com.google.common.base.Function;\r\nimport com.google.common.collect.Maps;\r\nimport java.util.ArrayList;\r\nimport java.util.HashMap;\r\nimport java.util.List;\r\nimport java.util.Map;\r\npublic class ListToMap {\r\n  public static void main(String[] args) {\r\n    List&lt;User&gt; userList = new ArrayList&lt;&gt;();\r\n    User user1 = new User();\r\n    user1.setId(1L);\r\n    user1.setAge(&quot;12&quot;);\r\n    User user2 = new User();\r\n    user2.setId(2L);\r\n    user2.setAge(&quot;13&quot;);\r\n    userList.add(user1);\r\n    userList.add(user2);\r\n    Map&lt;Long, User&gt; maps = new HashMap&lt;&gt;();\r\n    for (User user : userList) {\r\n      maps.put(user.getId(), user);\r\n    }\r\n    System.out.println(maps);\r\n  }\r\n  public static class User {\r\n    private Long id;\r\n    private String age;\r\n    public Long getId() {\r\n      return id;\r\n    }\r\n    public void setId(Long id) {\r\n      this.id = id;\r\n    }\r\n    public String getAge() {\r\n      return age;\r\n    }\r\n    public void setAge(String age) {\r\n      this.age = age;\r\n    }\r\n    @Override\r\n    public String toString() {\r\n      return &quot;User{&quot; +\r\n          &quot;id=&quot; + id +\r\n          &quot;, age='&quot; + age + '\\'' +\r\n          '}';\r\n    }\r\n  }\r\n}&lt;\/pre&gt;\r\n<\/pre>\n<p>2.\u4f7f\u7528guava<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\n&lt;pre class=&quot;brush:java;&quot;&gt;Map&lt;Long, User&gt; maps = Maps.uniqueIndex(userList, new Function&lt;User, Long&gt;() {\r\n      @Override\r\n      public Long apply(User user) {\r\n        return user.getId();\r\n      }\r\n});\r\n<\/pre>\n<p>3.\u4f7f\u7528JDK1.8<strong> lambda\u8868\u8fbe\u5f0f<\/strong><\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\n&lt;div class=&quot;jb51code&quot;&gt;\r\n&lt;pre class=&quot;brush:java;&quot;&gt;Map&lt;Long, User&gt; maps = userList.stream().collect(Collectors.toMap(User::getId, user -&gt; user));&lt;\/pre&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u539f\u6587\u94fe\u63a5\uff1ahttps:\/\/www.jb51.net\/article\/149605.htm Java\u4e09\u79cd\u65b9\u6cd5\u5c06L <a href='http:\/\/prayerlaputa.com\/?p=598' class='excerpt-more'>[&#8230;]<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0},"categories":[6],"tags":[71],"_links":{"self":[{"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=\/wp\/v2\/posts\/598"}],"collection":[{"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=598"}],"version-history":[{"count":2,"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=\/wp\/v2\/posts\/598\/revisions"}],"predecessor-version":[{"id":601,"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=\/wp\/v2\/posts\/598\/revisions\/601"}],"wp:attachment":[{"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=598"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=598"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/prayerlaputa.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}