Hello there fellow programmers. Can someone explain to me what this piece of code does exactly? The starting method throws me off a bit (isHigherThan(Card card2)); other than that I'm fine. card2 is not mentioned anywhere else in the java file.
public boolean isHigherThan(Card card2)
{
boolean result = false;
if (face == card2.getFace())
{
if (suit > card2.getSuit())
result = true;
}
else
{
if (face > card2.getFace())
result = true;
}
return result;
}
Thanks

card2is coming from? It's just the passed-in method argument. – BalusC Jun 20 '11 at 21:18