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

getDeclaredMethods() returns NULL (no exception)

XMLWordPrintable

    • 1.1.8
    • x86, sparc
    • solaris_2.5.1, windows_nt
    • Verified



      Name: el35337 Date: 05/12/98


      Problem: If a class A refers to a class B,
      and if B is not in classpath, then I can
      still load class A by Class.forName call
      (should it work???) and then if I call
      getDeclaredMethods() on class A then the call
      returns NULL. From the docs, I suppose it
      should either throw an exception or return
      an array of Method[] of length 0. The strange
      thing is that the getMethods() call on class
      A returns an array of finite length.

      1) Should the class A be loaded at all if
      it refers to B and B is not in classpath?
      2) Shouldn't getDeclaredMethods() call throw
      an exception if class A is loaded at all
      and B is not in classpath?
      3) In any case shouldn't getMethods and
      getDeclaredMethods return similar results (I
      mean either throw an exception or return a
      non-NULL array)?

      Sample Code

      I have a class aaaa which refers to bbbb.
      Compile both and then remove bbbb from
      class path. Run "java aaaa".

      aaaa.java
      ===========
      import java.lang.*;
      import java.lang.reflect.*;
      import bbbb;

      public class aaaa extends Object{

        public void xyz() {

        }

        public bbbb zzz () {
          return null;
        }

        public static void main (String [] args) {

          try {
            Class c = Class.forName ("aaaa");
            Method [] mm = c.getDeclaredMethods();

            System.out.println ("c is : " + c);
            if (mm == null)
                System.out.println ("mm is null");
            else
                System.out.println (mm + " " + mm.length);
          }
          catch (Exception e) {
            e.printStackTrace();
          }
        }
      }

      bbbb.java
      =========
      import java.lang.*;

      public class bbbb extends Object {

        public void xyz() {

        }

      }

      - ajay apte
      ###@###.###
      (Review ID: 30106)
      ======================================================================

            duke J. Duke
            elarsen Erik Larsen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: