I keep getting a .class expected error in the if statement. help please.
private int[] hand;
private int[] play;
public PokerHand(){
this.hand = new int[5];
}
public boolean haveCard(int card){
if (play[] == card)
return true;
}
public void displayCards(){
System.out.println(hand);
}
public void dealCards(){