ArrayList marks = new ArrayList();
Double sum = 0.0;
sum = ((Double)marks.get(i));
Everytime I try to run my program, I get a ClassCastException that states: java.lang.Integer cannot be cast to java.lang.Double
Everytime I try to run my program, I get a ClassCastException that states: java.lang.Integer cannot be cast to java.lang.Double |
||||
|
|
|
Well the code you've shown doesn't actually include adding any Integers to the
That will convert it to an Note that if you can possibly use generics for your |
|||
|
|
|
We can cast an
This shows the compile time error that corresponds to your runtime exception. |
|||
|
|
|
specify your marks:
This is called generics. |
|||
|
This means that your ArrayList has integers in some elements. The casting should work unless there's an integer in one of your elements. One way to make sure that your arraylist has no integers is by declaring it as a Doubles array.
|
|||
|
|