结构 代码展示
Book类代码
package com.xszx.beans;//实体类
public class Book {private int id;private String name;private int bsum;public Book() {}public Book(int id, String name, int bsum) {this.id id;this.name name;this.bsum bsum;}public int getId() {r…
报错: Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.7.1, expected version is 1.1.16.
解决方案:
非常简单:Build--->Rebuild project,再运行就没…