Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4229341

(1.1) Class.isAssignableFrom fails on unloaded class

XMLWordPrintable

    • 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)
      ======================================================================

            sliangsunw Sheng Liang (Inactive)
            vasya Vassili Igouchkine (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: