Date: Thu, 08 Jan 2004 16:57:46 +0100
From: <###@###.###>
Subject: Unboxing error with 1.5
To: ###@###.###
when trying to run the following code:
import java.util.*;
public class GenericsTest {
public static void main(String args[]) {
List<Integer> l = new ArrayList<Integer>();
l.add(3);
l.add(8);
// l.add("test");
l.add(1);
l.add(2);
// Print list items
int total = 0;
for (Integer o : l) {
System.out.println(o);
total += o;
}
System.out.println("total = " + total);
}
}
I get this error:
Exception in thread "main" java.lang.VerifyError: Bad type on operand
stack in method GenericsTest.main([Ljava/lang/String;)V at offset 93
changing the line:
total += o;
to:
total += o.intValue();
gets rid of the error, but I think the original should work as well.
From: <###@###.###>
Subject: Unboxing error with 1.5
To: ###@###.###
when trying to run the following code:
import java.util.*;
public class GenericsTest {
public static void main(String args[]) {
List<Integer> l = new ArrayList<Integer>();
l.add(3);
l.add(8);
// l.add("test");
l.add(1);
l.add(2);
// Print list items
int total = 0;
for (Integer o : l) {
System.out.println(o);
total += o;
}
System.out.println("total = " + total);
}
}
I get this error:
Exception in thread "main" java.lang.VerifyError: Bad type on operand
stack in method GenericsTest.main([Ljava/lang/String;)V at offset 93
changing the line:
total += o;
to:
total += o.intValue();
gets rid of the error, but I think the original should work as well.
- duplicates
-
JDK-4990372 Auto-unboxing fails with shortcut operator
-
- Closed
-
-
JDK-4990804 Compiler crashes processing source code which relies on auto-unboxing
-
- Closed
-
- relates to
-
JDK-4978051 jvm rejects code generated by javac
-
- Closed
-