Is it possible to create an array of stacks without having to cast the stacks as they come out? Eclipse gives me a warning about not being able to make a generic array of Stack when I do something like this:
Stack<Card>[] cards = new Stack<Card>[52];