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

Compiler can't handle static final arrays in inner classes

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 1.3.0
    • tools
    • x86
    • windows_nt



      Name: tb29552 Date: 01/04/2001


      /*
      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)

      Compiler has no problem with the simple variables "x" and "s" but
      reports an error over the array variables "intargs" and "args"
      while compiling this class:

      Outer.java:23: inner classes cannot have static declarations
              private static final int[] intargs = { 1, 2 };
                                         ^
      Outer.java:24: inner classes cannot have static declarations
              private static final String[] args = {"foo", "bar"};
                                            ^
      2 errors

      */
      public class Outer {
          class Inner {
              private static final int x = 3;
              private static final String s = "foo";
              private static final int[] intargs = { 1, 2 };
              private static final String[] args = {"foo", "bar"};
          }
      }

      (Review ID: 113834)
      ======================================================================

            gafter Neal Gafter (Inactive)
            tbell Tim Bell
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: