Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
import java.util.ArrayList;public class Player {
private ArrayList<Card> hand;
private int number;
private int score;
public Player(int number) {
hand = new ArrayList<>();
this.number = number;
score = 0;
}
/**
*
* @param index
* @return a card in hand at index
*/
public Card get(int index){
return hand.get(index);
}
/**
* increase the score
*/
public void score(){
score++;
}...