beyondgrader.com Logo
DemoBrowseAboutTeamLogin

Song Equality

Geoffrey Challen // 2020.10.0

Define a public class named Song. The Song constructor should accept a String name, String artist, and int year, in that order. Reject null names and artists using assert. Override equals and consider two Song instances to be equal if they have the same name, artist, and year. Do not expose your Song fields publicly.