remove 掉list中的数据

list中的数据是基本数据类型的,比如List 、List。。。的可以直接remove
但list中的数据是对象的,要根据id去remove,比如List users 则 要写hashCode

@Data
public class OpenList implements Serializable {
        private Long id;
        private String name;
        
    @Override
    public int hashCode() {
        int result = 31 *(id != null ? id.hashCode() : 0);
        return result;
    }
}

然后users.remove(user);

你可能感兴趣的:(remove 掉list中的数据)