How do I copy an object in Java?

后端 未结 23 3159
终归单人心
终归单人心 2020-11-21 04:50

Consider the code below:

DummyBean dum = new DummyBean();
dum.setDummy(\"foo\");
System.out.println(dum.getDummy()); // prints \'foo\'

DummyBean dumtwo = du         


        
23条回答
  •  轮回少年
    2020-11-21 05:19

    Here's a decent explanation of clone() if you end up needing it...

    Here: clone (Java method)

提交回复
热议问题