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

bad code generated for string concatenation

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 1.2.0, 1.2.1
    • tools
    • x86, sparc
    • solaris_2.6, windows_nt



      Name: gsC80088 Date: 12/09/98


      To concatenate a character array to a string,
      javac incorrectly produces code that calls
      StringBuffer.append(Object) instead of
      StringBuffer.append(char[]).

      The following example writes something like
      "abc[C@4ea0928f" instead of the expected "abcdef".

      class t {
          public static void main(String[] args) {
              char[] def = { 'd', 'e', 'f' };
              System.out.println("\tabc" + def);
          }
      }
      (Review ID: 47297)
      ======================================================================

            wmaddoxsunw William Maddox (Inactive)
            gstone Greg Stone
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: