Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I will upvote as soon as possible. Please code in Java. Instructions: Complete the source code according to the instructions given as comments in class
I will upvote as soon as possible. Please code in Java.
Instructions: Complete the source code according to the instructions given as comments in class TravelClubTest. You must use Lambda expressions in each part.
import java.util.*; public class TravelClubTest { public static void main(String[] args) { ArrayList members = new ArrayList(); members.add(new ClubMember("John", "Smith", 1990)); members.add(new ClubMember("Sarah", "Barnes", 1995)); members.add(new ClubMember("Mark", "Riley", 2010)); members.add(new ClubMember("Laura", "Getz", 2008)); members.add(new ClubMember("Larry", "Smith", 2015)); members.add(new ClubMember("Frank", "Phelps", 1999)); members.add(new ClubMember("Mario", "Guzman", 2000)); members.add(new ClubMember("Marsha", "Grant", 2017)); // show the last names of all members except for "John" // sort the members list by memberSince // sort the members list by lastName first and then by firstName for members with the same lastName } }
public class ClubMember { private String firstName, lastName; private int memberSince; public ClubMember(String firstName, String lastName, int memberSince) { super(); this.firstName = firstName; this.lastName = lastName; this.memberSince = memberSince; } public String getLastName() { return lastName; } public String getFirstName() { return firstName; } public int getMemberSince() { return memberSince; } @Override public String toString() { return "ClubMember [firstName=" + lastName + " lastName=" + lastName + ", memberSince=" + memberSince + "]"; } }
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