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

Nullpointer exception using ternary operator and Optional.ofNullable

XMLWordPrintable

    • generic
    • generic

      A DESCRIPTION OF THE PROBLEM :
      Using the ternary operator to assign a value to an Integer variable results in a Nullpointer exception. If one part of this operator is a Optional.ofNullable((Integer)null).orElse(null) call, execution of this assignment will result in an exception.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Compiling the given source code and execute it with "java OptionalTest"

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      Variable i been assigned value null.
      ACTUAL -
      Exception in thread "main" java.lang.NullPointerException
              at OptionalTest.main(OptionalTest.java:6)


      ---------- BEGIN SOURCE ----------
      import java.util.Optional;

      public class OptionalTest {

        public static void main(String[] args) {
          final Integer i = false ? 0 : Optional.ofNullable((Integer)null).orElse(null);
        }

      }

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

      CUSTOMER SUBMITTED WORKAROUND :
      Using a if/else construct instead of a ternary operator will not result in this exception.

            Unassigned Unassigned
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: