-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.8
-
generic, x86
-
generic, windows_95, windows_nt
Name: vi73552 Date: 04/13/99
/* the following code demonstrates the problem */
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
interface Intf {
public int f();
}
interface Intf2 {
public int f();
}
class Class1 {
public Intf i;
}
public class Test {
static public final void main(String args[]) {
Field[] cfields = Class1.class.getDeclaredFields();
// Class c = Intf.class; // if this line uncommented ==> works
for (int i=0; i<cfields.length; i++) {
Class type = cfields[i].getType();
Intf2.class.isAssignableFrom(cfields[i].getType());
}
}
}
(Review ID: 56460)
======================================================================
- duplicates
-
JDK-4237319 (1.1) Exception: access violation (0xc0000005), Address: 0x1001053a
-
- Closed
-