大圣React +Typescript企業(yè)級(jí)項(xiàng)目實(shí)戰(zhàn)
? @org.junit.Test
? ?public void coneableCopy() throws CloneNotSupportedException, JsonProcessingException {
? ? ? // 被克隆的類
? ? ? ?Student xiaoMing = new Student("小明");
? ? ? ?// 使用Jackson序列化進(jìn)行深拷貝
? ? ? ?ObjectMapper objectMapper = new ObjectMapper();
? ? ? ?Student copyStudent = objectMapper.readValue(objectMapper.writeValueAsString(xiaoMing), Student.class);
? ? ? ?System.out.println(xiaoMing == copyStudent);
? ?}
標(biāo)簽: