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

generation of code considered by the verifier as incorrect

XMLWordPrintable

    • 1.1
    • sparc
    • solaris_2.4
    • Verified



      Name: swC45995 Date: 10/07/96


      The verifier catches an assignment to a nonextisting array component before
      execution and by doing so prevents the subsequent execution. This takes place
      only for arrays of reference types. For example, of the following test

      public class test
      {
      public static void main(String argv[])
      {
      test [] a = null, b;

      b = a;
      b[0] = new test();
      }
      }

      with the -verify option produces verifier diagnostics:

      novo40% java -verify test
      VERIFIER ERROR test.main([Ljava/lang/String;)V:
      Incompatible types for storing into array of arrays or objects
      Can't find class test

      while its execution without this option produces the right output:

      novo40% java test
      java.lang.NullPointerException
      at test.main(test.java:8)

      ======================================================================

            pbk Peter Kessler
            wensunw Wen Wen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: