Privacy Policy Terms Of Use. Copyright © 2006-2010 Java Tutorials and Examples.
Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
(7 votes)
- import java.util.ArrayList;
- //Java ArrayList of Objects
- /*
- * This Java example shows how to create ArrayList of objects.
- */
- public class JavaArrayListOfObjects {
- public static void main(String args[]){
- //Create objects of Student class
- Student s1 = new Student("Alex&



