I am working on code that will create a deck of cards in order and create a shuffled deck of cards. I would like my code to work for over 1 deck full or not. I am able to create any size of shuffled cards but I am only allowed to make a deck of 52 that is not shuffled. I have tried a multitude of different ways to solve this.
Exception in thread "main" java.lang.NullPointerException
at Deck.toString(Deck.java:67)
at java.lang.String.valueOf(String.java:2854)
at java.io.PrintStream.println(PrintStream.java:821)
at testDeck.main(testDeck.java:13)
Code:
import java.util.*;
public class Deck
{
Random generator = new Random();
private static Card[] allCards;
private int size;
public Deck(int i)
{
size = i;
}
public void make()
{
int i, q, j = 0, h = 0;
allCards = new Card[size];
int value = size / 4;
int decks = size / 52;
// do{
for (i = 0; i <= value - 1; i++)
{
int nNumber = i;
if (i > 12)
{
i = 0;
break;
}
for (j = 0; j <= 3; j++)
{
int nSuit = j;
Card card2 = new Card(nNumber, nSuit);
allCards[h] = card2;
h++;
}
}
j++;
// }while(j>=decks);
// return allCards[];
}
public void shuffle()
{
int i = 0, j = 0, q = 0;
double numReq = size / 52;
Random generator = new Random();
allCards = new Card[size];
Card cardDefault = new Card(-1, -1);
while (q < size)
{// fills out the Array with nothing
allCards[q] = cardDefault;
q++;
}
while (i < size)
{
boolean repeat = false;
int suit = generator.nextInt(4);
int number = generator.nextInt(13);
Card card1 = new Card(number, suit);
int w = 0;
for (j = 0; j < size; j++)
{
if (card1.equals(allCards[j]))
{
w++;
if (w >= numReq)
{
repeat = true;
break;
}
}
}
if (!repeat)
{
allCards[i] = card1;
i++;
}
}
// return allCards[];
}
public String toString()
{
int i;
String result = "";
for (i = 0; i < size; i++)
result += allCards[i].toString() + "\n";
return result;
}
}