Java 8 autoboxing + generics: different behaviour with variable vs. method

前端 未结 4 747
日久生厌
日久生厌 2021-02-07 07:43

I found a piece of code that after switching from Java 7 to Java 8 stopped compiling. It does not feature any of the new Java 8 stuff like lambda or streams.

I narrowed

相关标签:
4条回答
  • 2021-02-07 07:54

    Have to claim this is not an answer, merely a reasoning. With my brief experience in compiler (not Javac specific), it could has something to do with how the code is parsed.

    In the following decompiled code, you see either calling the method GenericData.getData:()Ljava/lang/Object or referring to field GenericData.data:Ljava/lang/Object, they both first get the value/method with Object returned, followed by a cast.

      stack=4, locals=4, args_size=1
         0: new           #2                  // class general/GenericData
         3: dup
         4: dconst_1
         5: invokestatic  #3                  // Method java/lang/Double.valueOf:(D)Ljava/lang/Double;
         8: invokespecial #4                  // Method general/GenericData."<init>":(Ljava/lang/Object;)V
        11: astore_1
        12: aload_1
        13: ifnonnull     23
        16: dconst_0
        17: invokestatic  #3                  // Method java/lang/Double.valueOf:(D)Ljava/lang/Double;
        20: goto          30
        23: aload_1
        24: invokevirtual #5                  // Method general/GenericData.getData:()Ljava/lang/Object;
        27: checkcast     #6                  // class java/lang/Double
        30: astore_2
        31: aload_1
        32: ifnonnull     39
        35: dconst_0
        36: goto          49
        39: aload_1
        40: getfield      #7                  // Field general/GenericData.data:Ljava/lang/Object;
        43: checkcast     #6                  // class java/lang/Double
        46: invokevirtual #8                  // Method java/lang/Double.doubleValue:()D
        49: invokestatic  #3                  // Method java/lang/Double.valueOf:(D)Ljava/lang/Double;
        52: astore_3
        53: return
    

    If compare the ternary operator expression with an equivalent if-else:

    Integer v = 10;
    v = v != null ? 1 : 0;
    
         0: bipush        10
         2: invokestatic  #2                  // Method java/lang/Integer.valueOf:(I)Ljava/lang/Integer;
         5: astore_1
         6: aload_1
         7: ifnull        14
        10: iconst_1
        11: goto          15
        14: iconst_0
        15: invokestatic  #2                  // Method java/lang/Integer.valueOf:(I)Ljava/lang/Integer;
        18: astore_1
        19: return
    
    Integer v = 10;
    if (v != null)
        v = 1;
    else
        v = 0;
    
         0: bipush        10
         2: invokestatic  #2                  // Method java/lang/Integer.valueOf:(I)Ljava/lang/Integer;
         5: astore_1
         6: aload_1
         7: ifnull        18
        10: iconst_1
        11: invokestatic  #2                  // Method java/lang/Integer.valueOf:(I)Ljava/lang/Integer;
        14: astore_1
        15: goto          23
        18: iconst_0
        19: invokestatic  #2                  // Method java/lang/Integer.valueOf:(I)Ljava/lang/Integer;
        22: astore_1
        23: return
    

    There is no significant difference in the two versions. So I don't think there is a hidden secret doing all the black magic. It's a result of how the compiler parse the whole expression, and based on the context to figure out a type to make all components equally happy. E.g.,

    Double val = 0; // compilation error: context is clear, 0 is an integer, so Integer.valueOf(i), but don't match expected type - Double
    val = 0 + g.getData(); // OK, enough context to figure out the type should be Double
    

    Still, the confusion is in that why the generic field works but not the generic method...

    val = val == null ? 0 : g.data; // OK
    val = val == null ? 0 : g.getData(); // Compilation error
    

    EDIT: the document Holger quoted seems to be a good clarification.

    0 讨论(0)
  • 2021-02-07 07:55

    This seems to be a known issue of the Oracle compiler: Bug ID: JDK-8162708

    Quote:

    A DESCRIPTION OF THE PROBLEM :
    If you have a method in a generic class declared as follow:

    class Foo<T> {
      public T getValue() {
        // returns a value ...
      }
    }
    

    and you call the method above inside a ternary operator as follow

    Foo<Integer> foo = new Foo<>();
    Float f = new Random().nextBoolean() ? foo.getValue() : 0f;
    

    you get a syntax error from the javac 1.8 compiler.

    But the code above compiles with no errors and warnings with both javac 1.7 and 1.9.

    Resolution: Unresolved

    Affected Versions: 8

    From the Comments:

    This issue is only applicable to 8u, there is no issue in 7 and 9

    0 讨论(0)
  • 2021-02-07 08:01

    Method invocation expressions are special in that they may be Poly Expressions, subject to target typing.

    Consider the following examples:

    static Double aDouble() {
        return 0D;
    }
    …
    Double d = g == null ? 0 : aDouble();
    

    this compiles without any problems

    static <T> T any() {
        return null;
    }
    …
    Double d = g == null ? 0 : any();
    

    here, the invocation of any() is a Poly Expression and the compiler has to infer T := Double. This reproduces the same error.

    This is the first inconsistency. While your method getData() refers to the type parameter T of GenericData, it is not a generic method (there is/should be no type inference involved to determine that T is Double here.

    JLS §8.4.4. Generic Methods

    A method is generic if it declares one or more type variables

    getData() doesn’t declare type variables, it only uses one.

    JLS §15.12. Method Invocation Expressions:

    A method invocation expression is a poly expression if all of the following are true:

    • The method to be invoked, as determined by the following subsections, is generic (§8.4.4) and has a return type that mentions at least one of the method's type parameters.

    Since this method invocation is not a poly expression, it should behave like the example with the aDouble() invocation, rather than the any().

    But note §15.25.3:

    Note that a reference conditional expression does not have to contain a poly expression as an operand in order to be a poly expression. It is a poly expression simply by virtue of the context in which it appears. For example, in the following code, the conditional expression is a poly expression, and each operand is considered to be in an assignment context targeting Class<? super Integer>:

    Class<? super Integer> choose(boolean b,
                                  Class<Integer> c1,
                                  Class<Number> c2) {
        return b ? c1 : c2;
    }
    

    So, is it a reference conditional or a numeric conditional expression?

    §15.25. Conditional Operator ? : says:

    There are three kinds of conditional expressions, classified according to the second and third operand expressions: boolean conditional expressions, numeric conditional expressions, and reference conditional expressions. The classification rules are as follows:

    • If both the second and the third operand expressions are boolean expressions, the conditional expression is a boolean conditional expression.
    • If both the second and the third operand expressions are numeric expressions, the conditional expression is a numeric conditional expression.
      For the purpose of classifying a conditional, the following expressions are numeric expressions:
      • An expression of a standalone form (§15.2) with a type that is convertible to a numeric type (§4.2, §5.1.8).
      • A parenthesized numeric expression (§15.8.5).
      • A class instance creation expression (§15.9) for a class that is convertible to a numeric type.
      • A method invocation expression (§15.12) for which the chosen most specific method (§15.12.2.5) has a return type that is convertible to a numeric type.
      • A numeric conditional expression.
    • Otherwise, the conditional expression is a reference conditional expression.

    So according to these rules, not precluding generic method invocations, all of the shown conditional expressions are numeric conditional expression and should work, as only “otherwise” they are to be considered to be reference conditional expression. The Eclipse version, I tested, compiled all of them without reporting any error.

    This leads to the strange situation that for the any() case we need target typing to find out that it has a numeric return type and deducing that the conditional is a numeric conditional expression, i.e. a stand-alone expression. Note that for boolean conditional expressions, there is the remark:

    Note that, for a generic method, this is the type before instantiating the method's type arguments.

    but for numeric conditional expression, there’s no such note, whether intentional or not.

    But as said, this only applies to the any() example anyway, as the getData() method is not generic.

    0 讨论(0)
  • 2021-02-07 08:15

    CompileMe.java:4: error: incompatible types: bad type in

    conditional expression

          Double d = g == null ? 0 : g.getData(); // type error!!!
    
    int cannot be converted to Double
    

    Here 0 is integer and you are putting it inside Double.

    Try this

    public class CompileMe {
        public static void main(String[] args) {
            GenericData<Double> g = new GenericData(1d);
            Double d = g == null ? 0d : g.getData(); // type error!!!
            Double d2 = g == null ? 0d : g.data; // now why does this work...
            System.out.println(d);
            System.out.println(d2);
        }
    }
    
    class GenericData<T> {
        public T data;
        public GenericData(T data) {
            this.data = data;
        }
        public T getData() {
           return data;
        }
    }
    

    Or use double literal instead of Double wrapper class

        public class CompileMe {
        public static void main(String[] args) {
            GenericData<Double> g = new GenericData(1d);
            double d = g == null ? 0 : g.getData(); // type error!!!
            double d2 = g == null ? 0 : g.data; // now why does this work...
            System.out.println(d);
            System.out.println(d2);
        }
    }
    
    class GenericData<T> {
        public T data;
        public GenericData(T data) {
            this.data = data;
        }
        public T getData() {
            return data;
        }
    }
    

    Because widening and boxing will not take place simultaneously.

    0 讨论(0)
提交回复
热议问题