Create a new arraylist call peoplelist that contains people

Assignment Help JAVA Programming
Reference no: EM131599425

Question1. Solving this question will help you understand Collections in java.

Copy the previous application to a new folder, open it in NetBeans and rename it to "CollectionsExample"

2.1 (20) Create a new ArrayList call "peopleList" that contains People objects.
ArrayList<People> peopleList = new ArrayList();
Then create one student Object, one Staff, and one Faculty object. Add all three objects to "peopleList"
Hint:
Student student1 = new Student("James", "Bond", new Date("01/01/1995"), 111222333);
peopleList.add(student1);
Then use a for-loop to call all objects' Display function to print out the contents of each objects.

2.2 (20) In order to compare different object, you need to implement a Comparator for class "People". Please create a FirstNameComparator which will implement the java "Comparator" Interface.
Hint declare a new class: public class FirstNameComparator implements Comparator<People>
And then override the "compare" method of that Interface in the method, you should compare the firstName String.
@Override
public int compare(People p1, People p2) {
return p1.getFirstName().compareTo(p2.getFirstName());
}

2.3 (20)refer to 2.2, write a new class "SSNComparator", and implement the java "Comparator" Interface. In that class, override the "compare" method to compare the SSN.

2.4 (20) Collection sorting method in your main function:

2.4.1 Please use Collections and FirstNameComparator to sort your "peopleList" by FirstName and print out your "peopleList".

2.4.2 Please use Collections and SSNComparator to sort your "peopleList" by SSN and print out your "peopleList".

2.5 (20)ArrayList other methods:

2.5.1 ArrayList AddAll method:
Create a new ArrayList<People> PeopleListClone object, use its AddAll method to Add "peopleList" to itself twice. You will have 6 elements for PeopleListClone. Display all six elements.

2.5.2 ArrayList Remove method.
Use remove method in "PeopleListClone" to remove the student objects in this ArrayList, two student elements will be removed. Display all four elements left.

2.5.3 ArrayList Reverse method. Use Collections.reverse method to reverse the PeopleListClone and then display all elements after reverse.

2.5.4 ArrayList Clear method. Use PeopleListClone.clear() method to empty the ArrayList, then display to user that now this array contains 0 element.

Attachment:- Assignment.zip

Reference no: EM131599425

Questions Cloud

Proportion of females in the sample : On a specific day, a store in the mall took a random sample of 163 shoppers and recorded the proportion of females in the sample.
Hypothesis testing yields credible results : Question: Based on the above five steps, how would you ensure that your Hypothesis testing yields credible results?
Interpret anova results please : Sum of Squares between groups 559400 with df of 2 and mean square 279700. Sum of squares within groups 9483400 with df of 27 and mean square
Ci for the population mean : the researchers sample had a SD of 1.2 years. construct a 99% CI for the population mean
Create a new arraylist call peoplelist that contains people : Create a new ArrayList call peopleList" that contains People objects
Public complaint against a police department : ?Research news sources (articles, newspapers, Internet, etc) and find an example of a public complaint against a police department.
Literary analysis of critical theme in either film or novel : English Essay Assignment: Choice One. Literary Analysis of a Critical Theme in Either the Film or Novel of Stephen King's The Shining.
Roi data set : For each of the 2 majors calculate the mean, median, minimum, maximum, range, and standard deviation for the columns 'Cost' and '30-Year ROI'.
Least squares estimates : Calculate the following least squares estimates. Carry out all calculations exactly and round to 3 decimal places the final answers only.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd