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

compiler doesn't interdict casting between array of chars to array of bytes

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.3.0
    • tools
    • None
    • sparc
    • solaris_2.6



      Name: asC58863 Date: 11/01/99



      See The Java Language Specification (paragraph 5.5, page 67) :
      "
      The detailed rules for compile-time correctness checking of a casting conversion
      of a value of compile-time reference type S (source) to a compile-time reference
      type T (target) are as follows :
      [...]
       + If S is an array type SC[], that is, an array of components of type SC:
       [...]
         + If T is an array type TC[], that is, an array of components of type TC,
           then a compile-time error occurs unless one of the following is true :
          + TC and SC are the same primitive type
          + TC and SC are reference types and type SC can be cast to TC by a recursive
            application of these compile-time rules for casting.
      "
      The new java compiler doesn't follow these rules.

      See the example demonstrating the bug:
      --------------- CompilerTest.java --------------------
      class CompilerTest {
          public static void main(String[] argv) {
              byte[] encoded = { '0', '1', '3', 'f', ')', 'O', '0', 'x' };
          }
      }
      -------------- Output from the test -----------------
      (ans@matmech(pts/16): ~/work .266)
      :\>java -fullversion
      java full version "1.3.0-L"
      (ans@matmech(pts/16): ~/work .262)
      :\>javac CompilerTest.java
      (ans@matmech(pts/16): ~/work .263)
      :\>oldjavac CompilerTest.java
      CompilerTest.java:3: Incompatible type for array. Explicit cast needed to convert char to byte.
                      byte[] encoded = { '0', '1', '3', 'f', ')', 'O', '0', 'x' };
                                       ^
      1 error

      ------------------------------------------------------

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

            wmaddoxsunw William Maddox (Inactive)
            anssunw Ans Ans (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: