Are there any specific examples of backward incompatibilities between Java versions?

后端 未结 14 685
孤城傲影
孤城傲影 2020-12-02 12:28

Have there been incompatibilities between Java releases where Java source code/Java class files targeting Java version X won\'t compile/run under version Y (where Y > X) ?

14条回答
  •  独厮守ぢ
    2020-12-02 12:59

    The interface java.sql.Connection was extended from Java 1.5 to Java 1.6 making compilation of all classes that implemented this interface fail.

提交回复
热议问题