| Rules Applied | StructRule | PointerRule | InsertClassRule | (Final Version) | |
|---|---|---|---|---|---|
| StructRule PointerRule InsertClassRule final | int numCards; int lastCard; boolean getOutOfJailFreeUsed; long * offsets; | int numCards; int lastCard; boolean getOutOfJailFreeUsed; long[] offsets; | public class CardDeck {
int numCards;
int lastCard;
boolean getOutOfJailFreeUsed;
long[] offsets;
}
| public class CardDeck {
int numCards;
int lastCard;
boolean getOutOfJailFreeUsed;
long[] offsets;
}
|