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

result of ?: operator is not of the correct type.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.0
    • 0.9
    • tools
    • 1.0beta
    • sparc
    • solaris_2.4
    • Not verified

      Rafael Bracho writes:

      Returning of Numeric Constants. There seems to be a weird
      interaction between attempting to return a numeric constant,
      especially zero, as a result of the ternary operator, when the
      function is declared as returning a 'short' or a 'byte'. The
      following class makes oakc warn us of a possible loss of precision:

          class test {
      short handicap() {
      short hcp = (short) (0.9 * (200.0 - average()));
      return (hcp > 0) ? hcp : 0;
      }
          }

      Casting zero to be a short in the return statement stops the warning.

            ahoffsunw Arthur Hoff (Inactive)
            ahoffsunw Arthur Hoff (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: