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

Implementation of valueOf(Object obj) method inside String is wrong

XMLWordPrintable

    • x86_64
    • windows_7

      FULL PRODUCT VERSION :
      all version

      ADDITIONAL OS VERSION INFORMATION :
      All Version

      A DESCRIPTION OF THE PROBLEM :
      When we are passing object which contain null reference and calling valueOf(Object obj) method. It's return null string which contain length 4. Ideally It should return null because String can contain null.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      It should return null
      ACTUAL -
      It's return "null" as an string

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      package org.vc;
      /**
       *
       * @author choudhary-v
       *
       */
      public class StringTest {

      public static void main(String[] args) {
      Object obj = null;
      String s = String.valueOf(obj);
      System.out.println("String value : "+s);
      // when this method will return actuall null then below line will throw null pointer exception which is expected
      System.out.println("String length : "+s.length());

      }

      }

      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
       public static String valueOf(Object obj) {
              return (obj == null) ? null : obj.toString();
          }


            psonal Pallavi Sonal (Inactive)
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: