All Stories

Java - no_image

StackThe Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with five operations that allow a vector to be treated as a stack. The usual push ...

In tutorial, no_image, java, Jan 23, 2025

Java - serialize_deserialize_java

Serializable interfaceSerialization is a mechanism of converting the state of an object into a byte stream. Deserialization is the reverse process where the byte stream is used to rec...

In tutorial, serialize_deserialize_java, java, Jan 23, 2025

Java - linkedlist-node

LinkedListDoubly-linked list implementation of the List and Deque interfaces. Implements all optional list operations, and permits all elements (including null).

In tutorial, linkedlist-node, java, Jan 23, 2025

Java - no_image

LinkedHashSetHash table and linked list implementation of the Set interface, with predictable iteration order. This implementation differs from HashSet in that it maintains a doubly-l...

In tutorial, no_image, java, Jan 23, 2025

Java - no_image

LinkedHashMapHash table and linked list implementation of the Map interface, with predictable iteration order. This implementation differs from HashMap in that it maintains a doubly-l...

In tutorial, no_image, java, Jan 23, 2025

Java - iterators

Iterator interface

In tutorial, iterators, java, Jan 23, 2025

Java - no_image

HashtableThis class implements a hash table, which maps keys to values. Any non-null object can be used as a key or as a value.

In tutorial, no_image, java, Jan 23, 2025

Java - no_image

HashSetThis class implements the Set interface, backed by a hash table (actually a HashMap instance). It makes no guarantees as to the iteration order of the set; in particular, it do...

In tutorial, no_image, java, Jan 23, 2025

Java - no_image

EnumSetA specialized Set implementation for use with enum types. All of the elements in an enum set must come from a single enum type that is specified, explicitly or implicitly, when...

In tutorial, no_image, java, Jan 23, 2025

Java - no_image

EnumMapA specialized Map implementation for use with enum type keys. All of the keys in an enum map must come from a single enum type that is specified, explicitly or implicitly, when...

In tutorial, no_image, java, Jan 23, 2025