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

Conditional operator applies assignment conversion

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P1 P1
    • 5.0
    • 5.0
    • tools
    • b60
    • generic
    • generic

      Currently, javac accepts uses of the conditional operator which are in violation of the Java Language Specification:

      String[] sa = null;
      List<String> ls = (sa == null) ? Arrays.asList(sa) : Collections.emptyList();

      According to the spec, the type of the conditional operator should be lub(List<String>, List<Object>) = List<?> why the assignment is illegal. However, javac compiles this example without any errors or warnings.

            ahe Peter Ahe
            ahe Peter Ahe
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: