IDEA编译报错:Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary ...

淡淡的烟草味﹌ 2024-02-05 20:03 172阅读 0赞

目录

    • 一、场景
    • 二、报错信息
    • 三、重现步骤
    • 四、原因
    • 五、解决

一、场景

1、IDEA编译Java文件报错


二、报错信息

  1. Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.6.0, expected version is 1.1.15.
  2. Warning:Kotlin: Some JAR files in the classpath have the Kotlin Runtime library bundled into them. This may cause difficult to debug problems if there's a different version of the Kotlin Runtime library in the classpath. Consider removing these libraries from the classpath

在这里插入图片描述


三、重现步骤

1、先编译一遍项目

2、将其中一个Java文件从原目录移动到其他目录

3、再次编译


四、原因

1、在第一次编译后,原目录会生成class文件

2、将Java文件从原目录移动到其他目录后再次编译,会在新目录再次生成对应的class文件,这时再原目录和新目录都会生成同样的class文件,导致冲突


五、解决

Rebuild Project即可,Rebuild Project会先删除先前编译的class

在这里插入图片描述

发表评论

表情:
评论列表 (有 0 条评论,172人围观)

还没有评论,来说两句吧...

相关阅读