比较两个list对象是否相同

public Boolean exist(Container container){
    List<SensorAtom> newSensorList = container.getSensorList();
    List<SensorAtom> oldSensorList = containerSensorService.getSensorList(container.getContainerId());

    if(newSensorList == null && oldSensorList == null){
        return true;
    }
    else if(newSensorList == null || oldSensorList == null){
        return false;
    }
    else if(newSensorList.size() != oldSensorList.size()){
        return false;
    }
    else {
        return newSensorList.stream().allMatch(n -> oldSensorList.contains(n));
    }
}
原文地址:https://www.cnblogs.com/zhangpengshou/p/6618314.html