Java對象之深克隆和淺克隆

淺克隆: 只copy對象引用,不copy對象自己。即對象地址不變,仍然只存在一個對象。 例如: User user1 = new User; User user2 = user1; 這裏引用類型對象地址不變,只是將user2的引用指向user1的地址。 淺克隆代碼示例: Bean:web public class User { private Integer id; privat
相關文章
相關標籤/搜索