1
可能重複:
What are all the different ways to create an object in Java?Java類實例化
什麼是我可以實例在Java中比新的運營商之外的其他類不同的方式?
可能重複:
What are all the different ways to create an object in Java?Java類實例化
什麼是我可以實例在Java中比新的運營商之外的其他類不同的方式?
您可以通過反射創建一個新對象。例如:
Class cls = Class.forName("Foo");
Foo foo = cls.newInstance();
其他方法克隆和反序列化,你可以在這個問題的答案,請參閱:What are all the different ways to create an object in Java?