并发编程下的集合:数组寻址、LinkedList、HashMap、ConcurrentHashMap
数组如何寻址a[n]=起始地址+(n*字节数)译:a[2]=100+(2*4)2为下标、4为int类型字段占四个字节LinkedListLinkedList为双向链表结构,链表结构又分为单向、双向、以及循环。//双向链表privatestaticclassNode{Eitem;Nodenext;Nodeprev;Node(Nodeprev,Eelement,Nodenext){this.item=