Join
Blogs
Questions
Videos
Tags
Members
Search
 
 
Create your own blog, earn points and get popular!

Object

Sameera's picture

Java ArrayList of Objects

5
Your rating: None Average: 5 (7 votes)
This Java example shows how to create ArrayList of objects and use it.
  1. import java.util.ArrayList;
  2.  
  3. //Java ArrayList of Objects
  4.  
  5. /*
  6.  * This Java example shows how to create ArrayList of objects.
  7.  */
  8. public class JavaArrayListOfObjects {
  9.    
  10.     public static void main(String args[]){
  11.        
  12.         //Create objects of Student class
  13.         Student s1 = new Student("Alex&
Andr's picture

Java Programming Tutorial - Array Holding Many Objects

Video Tutorial: 
See video
Syndicate content