使用HashMap,put()表示放置元素,get()表示取元素

Posted borter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用HashMap,put()表示放置元素,get()表示取元素相关的知识,希望对你有一定的参考价值。

SortedSet可自动为元素排序。

SortedSet的实现类是TreeSet:它的作用是字为添加到TreeSet中的元素排序。

与HashSet不同,TreeSet并不需要实现HashCode()和equals()。

只要实现compareable和compareTo()接可以实现过滤功能。

(注:HashSet不调用CompareTo())。

如果要查询集合中的数据,使用Set必须全部遍历,所以查询的效率低。使用Map,可通过查找key得到value,查询效率高。

集合中常用的是:ArrayList,HashSet,HashMap。其中ArrayList和HashMap使用最为广泛。

使用HashMap,put()表示放置元素,get()表示取元素。

 

 1 package TomTexts;
 2 
 3 public class TomTexts_15 {
 4       public static void main(String args[ ])
 5       { 
 6     int I,j;
 7     int intArray[]={30,1,-9,70,25};
 8     int l=intArray.length;
 9     for( I=0;I<l-1;I++)
10       for( j=I+1;j<1;j++)
11           if(intArray[I]>intArray[j])
12            {int t=intArray[I];
13             intArray[I]=intArray[j];
14             intArray[j]=t;
15            }
16     for( I=0;I<l;I++)
17     System.out.println(intArray[I]+ " ");
18     }
19 
20 }

 

以上是关于使用HashMap,put()表示放置元素,get()表示取元素的主要内容,如果未能解决你的问题,请参考以下文章

HashMap 获取/放置复杂度

HashMap 获取/放置复杂度

HashMap 获取/放置复杂度

JDK 7/8中的HashMap get/put源码阅读

HashMap线程不安全的体现

多线程下HashMap的死循环问题