I am attempting to convert arrays of primitive double values to objects. As a result I am getting a "type mismatch error"
private double[]purchases;
to
private CreditCard[]purchases;
then when I try to add a value to the array
public void purchase(double amount)throws Exception
{
if (numPurchases<purchases.length)
if (amount >0 )
if(amount+balance<=creditLimit)
if( GregorianCalendar.getInstance().getTimeInMillis()<=expDate.getTimeInMillis())
{
balance+=amount;
purchases[numPurchases]= amount;
numPurchases++;
}
else
{
throw new Exception("card expired");
}
else{
throw new Exception("insufficient credit");
}
else{
throw new Exception("invalid amount");
}
else{
throw new Exception("exceeded number of allowed purchases");
}
}
the error message says type mismatch for amount "cannot convert from double to CreditCard how can I correct the code to allow me to add purchase amounts to the array?
CreditCard? – Neil Mar 10 '11 at 0:01