If all Cards have an attack, you can add an abstract getAttack() to the superclass.
class Card {
public abstract int getAttack();
}
Otherwise, you could have an interface IAttackCard with a method getAttack(), that CardUnit implements. Then, when accessing cards from the list, you can check whether they're instances of IAttackCard.
interface ICardAttack {
public int getAttack();
}
class CardUnit extends Card implements ICardAttack {
private int attack;
@Override
public int getAttack() { return attack; }
}
Testing directly for CardUnit with instanceof would interfere with the open-closed principle -- adding a new subclass of Card could require modification of existing code that works with Cards.
Cardinstance does not define anyattack, so how do you expect to access this in such an instance ? – Bhaskar Oct 7 '11 at 16:25