subject
Computers and Technology, 21.02.2020 17:57 whimsy

The Player. java file defines a class that holds information about an athlete: name, team, and uniform number. The ComparePlayers. java file contains a skeletal program that uses the Player class to collect information about two baseball players and determine whether or not they are the same player.

Complete the main() method in ComparePlayers. java so that it reads in information for two players and prints "Same player" if they are the same, or "Different players" if they are different. Use the equals() method, which Player inherits from the Object class, to determine whether the two players are the same. Are the results what you expect?

The problem is that, as defined by the Object class, equals() performs a shallow address comparison. It says that two objects are only the same if they live at the same memory location, that is, if the variables that hold references to them are aliases. Our two Player objects in this program are not aliases, so even if they contain exactly the same information they will be "not equal." To make equals() compare the actual information contained in the object, you must override it with a definition specific to the class. In this case, it makes sense to say that two players are "equal" (the same player) if they are on the same team and have the same uniform number (their names might differ if one name is actually a nickname or other variant of the player’s official name).

Use this strategy to define a new equals() method for the Player class. Note that the header for equals() (which you are overriding) MUST be:

public boolean equals(Object o)

This means that Player’s version of equals() must first cast its Object parameter to a Player before returning true or false based on whether that Player object’s team and uniform numbers match those of the current Player’s corresponding instance variables.

Finally, test your ComparePlayers program using your modified Player class. It should now give the results you would expect.

//
// Player. java
//
// Defines a Player class that holds information about an athlete.
//

public class Player
{
private String name;
private String team;
private int jerseyNumber;

//
// Prompts for and reads in the player's name, team, and
// jersey number.
//

public void setName(String name)
{
}

public void setTeam (String team)
{
}

public void setNumber(int number)
{
}

}
//
// ComparePlayers
//
// Reads in two Player objects and tells whether they represent
// the same player.
//

import java. util.*;

public class ComparePlayers
{
public static void main(String[] args)
{
Player player1 = new Player();
Player player2 = new Player();

//Prompt for and read in information for player 1

//Prompt for and read in information for player 2

//Compare player1 to player 2 and print a message saying
//whether they are equal

}
}

ansver
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 10:00, fnaflover8505
Businesses allocate resources for their best and most productive uses. the more a resource, the more costly it will be. a manufacturer that requires scarce and costly resources is likely to charge for its products.
Answers: 2
image
Computers and Technology, 22.06.2019 15:00, gmc2771
Hyperactive media sales has 10 windows 7 laptop computers used by sales-people in the organization. each laptop computer has several customized applications that are used during the sales process as well as customer relationship management software. all of the applications on the laptops are difficult to configure and have large data files. if all of the laptops have current hardware, what is the easiest way to install windows 10 on them?
Answers: 1
image
Computers and Technology, 22.06.2019 18:10, AdoNice
How can i delete permalinks from a word press site?
Answers: 1
image
Computers and Technology, 23.06.2019 01:50, jumoke26
Create a class named majors that includes an enumeration for the six majors offered by a college as follows: acc, chem, cis, eng, his, phys. display the enumeration values for the user, then prompt the user to enter a major. display the college division in which the major falls. acc and cis are in the business division, chem and phys are in the science division, and eng and his are in the humanities division. save the file as majors. java.
Answers: 2
You know the right answer?
The Player. java file defines a class that holds information about an athlete: name, team, and unifo...

Questions in other subjects:

Konu
Mathematics, 17.01.2020 03:31