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

wrong type of shift expressions

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.1
    • 1.0.2
    • tools
    • 1.1
    • sparc
    • generic
    • Not verified



      Name: ###@###.### Date: 09/05/96

      the compiler determines the type of shift expressions
                   in accordance with the rules of binary promotion
                   (Java Language Specification, section 5.6.2). This contradicts
                   the following assertion:

                   Binary numeric promotion (section 5.6.2) is not performed on
                   the operands; rather, unary numeric promotion (section 5.6.1)
                   is performed on each operand separately. The type of the shift
                   expression is the promoted type of the left-hand operand.

                   (Java Language Specification, section 15.18)

      Tests: compilation of the following test:

      public class test
      {
      public static void main(String argv[])
      {
      int i = 1, j;

      j = i << 1l;
      System.out.println(j);
      j = ++i >> 1l;
      System.out.println(j);
      j = ++i >>> 1l;
      System.out.println(j);
      }
      }

      produces such error diagnostics:

      novo40% javac test.java
      test.java:7: Incompatible type for =. Explicit cast needed to convert long to int.
      j = i << 1l;
      ^
      test.java:9: Incompatible type for =. Explicit cast needed to convert long to int.
      j = ++i >> 1l;
      ^
      test.java:11: Incompatible type for =. Explicit cast needed to convert long to int.
      j = ++i >>> 1l;
      ^
      3 errors

      ======================================================================

            fyellinsunw Frank Yellin (Inactive)
            wensunw Wen Wen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: