Java: recommended solution for deep cloning/copying an instance

后端 未结 9 2380
半阙折子戏
半阙折子戏 2020-11-22 01:28

I\'m wondering if there is a recommended way of doing deep clone/copy of instance in java.

I have 3 solutions in mind, but I can have miss some, and I\'d like to ha

9条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 02:15

    I'd recommend the DIY way which, combined with a good hashCode() and equals() method should be easy to proof in a unit test.

提交回复
热议问题