This class is a member of the Java Collections Framework. Added in 1.7. Java documentation for java.util.concurrent.LinkedTransferQueue. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative...
Java.Security.Acl Java.Security.Cert Java.Security.Interfaces Java.Security.Spec Java.Sql Java.Text Java.Time Java.Time.Chrono Java.Time.Format Java.Time.Temporal Java.Time.Zone Java.Util Java.Util AbstractCollection AbstractList (抽象列表) AbstractMap AbstractMap.SimpleEntry AbstractMap.SimpleImmutableEnt...
DataFlowListResponse DataFlowReference DataFlowReferenceType DataFlowResource DataFlowResource.Definition DataFlowResource.DefinitionStages DataFlowResource.DefinitionStages.Blank DataFlowResource.DefinitionStages.WithCreate DataFlowResource.DefinitionStages.WithIfMatch DataFlowResource.DefinitionStages.WithParentResource DataFlow...
Hash table and linked list implementation of theMapinterface, with predictable iteration order. This implementation differs fromHashMapin that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is normally the order in which ...
Hash table and linked list implementation of theSetinterface, with predictable iteration order. This implementation differs fromHashSetin that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is the order in which elements ...
Size() // 0 list.Add("a") // ["a"] list.Clear() // [] list.Insert(0, "b") // ["b"] list.Insert(0, "a") // ["a","b"] } DoublyLinkedList A list where each element points to the next and previous elements in the list. Implements List, ReverseIteratorWithIndex, ...
Add("a") // ["a"] list.Clear() // [] list.Insert(0, "b") // ["b"] list.Insert(0, "a") // ["a","b"] } SinglyLinkedList A list where each element points to the next element in the list. Implements List, IteratorWithIndex, EnumerableWithIndex, JSONSerializer and JSON...
Java.Util Assembly: Mono.Android.dll Hash table and linked list implementation of theSetinterface, with predictable iteration order. C#複製 [Android.Runtime.Register("java/util/LinkedHashSet", DoNotGenerateAcw=true)] [Java.Interop.JavaTypeParameters(new System.String[] {"E"})]publicclassLinkedHa...
access or removal of that elementfromtheConcurrentLinkedQueueinanother thread. 基于链表的无界线程安全队列。FIFO。队列头部是入队最长时间的结点,队尾是入队时间最短。新元素插入队列尾部。不允许使用null元素。 采用有效的非阻塞算法,该算法基于Maged M. Michael 和 Michael L. Scott非阻塞和阻塞的并发队列算法。
* all of its entries. This linked list defines the iteration ordering, * which is normally the order in which keys were inserted into the map * (insertion-order). Note that insertion order is not affected * if a key is re-inserted into the map. (A key k is * reinserted into a ma...