codeegginterviewgroup / CodeEggDailyInterview

码个蛋每日面试题
395 stars 55 forks source link

Java创建对象的几种方式。 #107

Open kukyxs opened 5 years ago

lydlovezjr commented 5 years ago

使用new关键字
使用Class类的newInstance方法 使用Constructor类的newInstance方法
使用clone方法
使用反序列化

参考: https://www.cnblogs.com/cy19/p/7684520.html