Pinned Repositories
array-list-example
ArrayList internally uses an Object type array to store the elements. Just like arrays, It allows you to retrieve the elements by their index.
boundedtype-typeoperator-example
Bounded type - type operator
git-lesson
hash-set-example
HashSet in Java stores unique elements, meaning it does not allow duplicate elements. However, the order in which elements are stored in a HashSet is not guaranteed to be any specific order.
kumudu-furniture-LA
Layered Architecture
Layered-Architecture
linked-list-example
Data in a Linked List is stored in a sequence of containers. The list holds a reference to the first container and each container has a link to the next one in the sequence.
typeoperator-example
A Generic Class is a class which can work on any type of data type or in other words we can say it is data type independent.
varargs-example
Java takes all arguments passed when invoking a method with varargs and makes an array out of it.
virajdilshan2002
virajdilshan2002 Repository
virajdilshan2002's Repositories
virajdilshan2002/virajdilshan2002
virajdilshan2002 Repository
virajdilshan2002/array-list-example
ArrayList internally uses an Object type array to store the elements. Just like arrays, It allows you to retrieve the elements by their index.
virajdilshan2002/boundedtype-typeoperator-example
Bounded type - type operator
virajdilshan2002/hash-set-example
HashSet in Java stores unique elements, meaning it does not allow duplicate elements. However, the order in which elements are stored in a HashSet is not guaranteed to be any specific order.
virajdilshan2002/linked-list-example
Data in a Linked List is stored in a sequence of containers. The list holds a reference to the first container and each container has a link to the next one in the sequence.
virajdilshan2002/tree-set-example
TreeSet is a collection class that implements the Set interface and is based on a TreeMap. It stores elements in a sorted order using their natural order or a custom comparator that you can provide.
virajdilshan2002/typeoperator-example
A Generic Class is a class which can work on any type of data type or in other words we can say it is data type independent.
virajdilshan2002/varargs-example
Java takes all arguments passed when invoking a method with varargs and makes an array out of it.
virajdilshan2002/varargs-typeoperator-example
Independent data type and multiple args.