Question: Write a Java program that does the following: Club class 1- Build a club class that has the following attribute: members with type Arralist. Members
Club class I- Build a club class that has the following attribute: members with type Arralist. Members store the members objects registered in the clab. 2- Build a constructor with no parameter that is only responsible for declaring and creating the members Arraylist. 3. Create a method addMembers to add a member object in the Arraylist. 4. Create a method removeMembers to remove a member object located at a specifie index from the Arraylist. 5. create a method SearchMencberimemher x ) that accepes a member object x as a parameter, then compare it to all other member objects in the Arraylist asing for loop and equals(0) method. If the object x found to be equal to an object in the Arraylist, exit the mecthod and print the object x found in the Arayliat. Member class 1- Build a member class that has the following attribute: Name(String), and id(int) 2- Build a constructor with two parameters (name, id) and initialize the attributes accordingly, 3- Build a default constructor with no body and parameters. 4- Build getter methods for all the attributes. 5. Build setter methods for all the attributes. 6. Build toString() to return string representation of all the attributes. Main methed 1- Create a club class object named cl. 2. Use for loop to create three members objects m1,m2,m3 (using the defuulr constructor) and add them in the members Arraylist in the cl object asing the addMembers method created above. 3. Use for loop to set the values of name and id for all the these members objects using the setter methods created above. 4- Delcte the member located in index 1 from the Amaylist in the cl object wing removeMembers method created above. 5- Use for loop to print the data of all the members objects (name and id) using set(index) method and eetter metheds. 6- Call the SearchMemeber(member x) method on the object el. 7. Finally use clear method to remove all objects from the members arraylist. Arrays.of Arrays 1- Create two-dimensional arrays and give valses as follows: 2. Use tow for loops to sum all the values in the 2-d array and print the final result of summation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
