Question
public class Person { public String firstName; public String lastName; public int idNum; public String city; public Person() { firstName = ; lastName = ;
public class Person { public String firstName; public String lastName; public int idNum; public String city;
public Person() { firstName = ""; lastName = ""; idNum =0; city =""; }
public Person(String firstName, String lastName, int idNum, String city) { this.firstName = firstName; this.lastName = lastName; this.idNum = idNum; this.city = city; }
@Override public String toString() { return "Person [firstName=" + firstName + ", lastName=" + lastName + ", idNum=" + idNum + ", city=" + city + "]"; }
public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public int getIdNum() { return idNum; }
public void setIdNum(int idNum) { this.idNum = idNum; }
public String getCity() { return city; } public void setCity(String city) { this.city = city; } }
in java code
/** * ITEC 3150 - ITEC 2140 and 2150 Review * * @author wjin * */
public class PersonTestUsingArray {
/** * Method: main * @param args */ public static void main(String[] args) { //Create an array that can store five Person objects and assign it to the variable people
/* Create Person objects for the following people and * add them to the array list people. * * Id is the 1st item on each line, then first name last name and city. 1, Nana Agyeman, Buford 2, Joseph Anderson, Duluth 3, Kyle Brooks, Lawrenceville 4, Joshua Broughton, Dacula 5, Demetri Clark, Lilburn */
/* * Print the array variable people */
/* * Print the array elements using a loop. Print each object in the following format: 1: Nana Agyeman @ Buford 2: Joseph Anderson @ Duluth 3: Kyle Brooks @ Lawrenceville 4: Joshua Broughton @ Dacula 5: Demetri Clark @ Lilburn */
/* * Add another person into the array: * 6, Joni Elshani, Atlanta */
/* * Print the array elements */
/* * Remove the first element from the array: */
/* * Print all the people in the array list */
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started