|
|
Program: Basic ArrayList Operations.
Description: |
Here we can see example for basic ArrayList operations like creating object for ArrayList,
adding objects into ArrayList, accessing objects based on index, searching an object in ArrayList whether it is listed under this instance
or not, adding elements at specific index, checking whether the ArrayList is empty or not, getting object index, and finally size of the ArrayList.
|
Code: |
package com.java2novice.arraylist;
import java.util.ArrayList;
public class MyBasicArrayList {
public static void main(String[] a){
ArrayList<String> al = new ArrayList<String>();
//add elements to the ArrayList
al.add("JAVA");
al.add("C++");
al.add("PERL");
al.add("PHP");
System.out.println(al);
//get elements by index
System.out.println("Element at index 1: "+al.get(1));
System.out.println("Does list contains JAVA? "+al.contains("JAVA"));
//add elements at a specific index
al.add(2,"PLAY");
System.out.println(al);
System.out.println("Is arraylist empty? "+al.isEmpty());
System.out.println("Index of PERL is "+al.indexOf("PERL"));
System.out.println("Size of the arraylist is: "+al.size());
}
}
|
|
Output: |
[JAVA, C++, PERL, PHP]
Element at index 1: C++
Does list contains JAVA? true
[JAVA, C++, PLAY, PERL, PHP]
Is arraylist empty? false
Index of PERL is 3
Size of the arraylist is: 5
|
|
|
|
|
List Of All ArrayList Sample Programs:- Basic ArrayList Operations.
- How to read all elements in ArrayList by using iterator?
- How to copy or clone a ArrayList?
- How to add all elements of a list to ArrayList?
- How to delete all elements from my ArrayList?
- How to find does ArrayList contains all list elements or not?
- How to copy ArrayList to array?
- How to get sub list from ArrayList?
- How to sort ArrayList using Comparator?
- How to reverse ArrayList content?
- How to shuffle elements in ArrayList?
- How to swap two elements in a ArrayList?
- How to convert list to csv string format?
|
|
|
Stream and types of Streams
A Stream is an abstraction that either produces or consumes information. There are two types of Streams and they are:
Byte Streams: Provide a convenient means for handling input and output of bytes. Byte Streams classes are defined by using
two abstract classes, namely InputStream and OutputStream.
Character Streams: Provide a convenient means for handling
input & output of characters. Character Streams classes are defined by using two abstract classes, namely Reader and Writer.
Never argue with a fool, onlookers may not be able to tell the difference.
-- Mark Twain
|