I wanted to know if there was a way to cast an array of integers into an array of characters in java. I keep getting a nullPointer Exception error.
This is what I have ...
private char [] clubsArray; // Will hold the clubsString String as an array
private char [] heartsArray;// Will hold the heartsString String as an array
private char [] spadesArray;// Will hold the spadesString String as an array
private char [] diamondsArray;// Will hold the diamondsString String as an array
private int [] intClubsArray; // Holds the character array as number values so I can sort it properly
private int [] intHeartsArray; // Holds the character array as number values so I can sort it properly
private int [] intSpadesArray; // Holds the character array as number values so I can sort it properly
private int [] intDiamondsArray; // Holds the character array as number values so I can sort it properly
public void cast()
{
for (int i = 0; i < clubsArray.length; i++)// A loop that will cast all the clubs into ints
{
intClubsArray[i] = (int) clubsArray[i];
}
for (int i = 0; i < heartsArray.length; i++)// A loop that will cast all the hearts into ints
{
intHeartsArray[i] = (int) heartsArray[i];
}
for (int i = 0; i < spadesArray.length; i++)// A loop that will cast all the spades into ints
{
intSpadesArray[i] = (int) spadesArray[i];
}
for (int i = 0; i < diamondsArray.length; i++)// A loop that will cast all the diamonds into ints
{
intDiamondsArray[i] = (int) diamondsArray[i];
}
}
Why am I getting this error ?? Can it be fixed ?? Can I cast an entire array ? and furthermore I dont want to set a specific size to the variable as I will get unnecessary 0 ' s for empty spaces when it becomes an int [] .