JSON.toJSONString创建一个地址全新的对象
List<PhoneCheckStatus> result1 = new ArrayList<>();
List<PhoneCheckStatus> result2 = new ArrayList<>();
if (checkParams != null && checkParams.size() > 0) {
for (PhoneCheckParam checkParam : checkParams) {
String mobilePhone = checkParam.getMobilePhone();
PhoneCheckStatus status = checkMobilePhone(mobilePhone, realm);
if (status != null) {
result1.add(status);
result2.add(status);
}
}
}
//
List<PhoneCheckStatus> result3 = JSON.parseArray(JSON.toJSONString(result), PhoneCheckStatus.class);
说明:
result1和result2是完全一样的,因为这两个对象内容的地址是一样的,如果对其中一个结果result1,进行修改值,那么另外一个的结果result2的值也会发生变化。
说明2:
如果想要一个完全新的相同的对象,可以用JSON.toJSONString来实现,result3其实是创建了一个新地址的对象,对result1进行修改值,不会影响result3.