Storing User-Defined Classes in Collections

 
import java.util.LinkedList;

class Address {
  private String name;
  private String street;
  private String city;
  private String state;
  private String code;

  Address(String n, String s, String c, String st, String cd) {
    name = n;
    street = s;
    city = c;
    state = st;
    code = cd;
  }

  public String toString() {
    return name + "\n" + street + "\n" + city + " " + state + " " + code;
  }
}

public class Main {
  public static void main(String args[]) {
    LinkedList<Address> ml = new LinkedList<Address>();

    ml.add(new Address("A", "11 Ave", "City", "IL", "00000"));
    ml.add(new Address("B", "11 Lane", "Town", "IL","99999"));
    ml.add(new Address("T", "11 St", "Province", "IL", "11111"));

    for (Address element : ml){
      System.out.println(element + "\n");      
    }
  }
}
  
Home 
  Java Book 
    Collection  

LinkedList:
  1. LinkedList class
  2. Create LinkedList
  3. Add element to LinkedList
  4. Remove all elements from LinkedList
  5. Shallow copy of a LinkedList
  6. If contain a certain element
  7. Get iterator from LinkedList
  8. Peek the element
  9. Get the element from LinkedList
  10. Get the index of an element
  11. Poll, pop and push element to a LinkedList
  12. Remove element from a LinkedList
  13. Replace the element at the position
  14. Get the size of a LinkedList
  15. Convert LinkedList to Array
  16. Storing User-Defined Classes in Collections