given a class that name player..contains under that class is
+getCards(): Cards[]
the description for this contains is -> getCards() – a method that gets card from the player
then my coding for this class is
public class Player
{
public Cards[] getCards ()
{
return cards;
}//getCards
}//class
then when i compile...it has an error on that..
cannot find symbol class Cards
How it happen?what is an error actually?
TQ