我们可以通过哪些方式创建 Java 中的对象?
你可以创建一个对象
使用 new 关键字。
Sample obj = new Sample();
- 使用 newInstance() 方法和 Class.forName() 方法。
Sample obj2 = (Sample) Class.forName("Sample").newInstance();
- 通过实现 Cloneable 接口(标记)使用 clone() 方法。
Sample obj3 = (Sample) obj1.clone();
- 使用类加载器。
Object obj4 = Sample.class.getClassLoader().loadClass("Sample");
- 使用 lang.reflect 包中的构造器类。
Class cls = Sample.class; Constructor obj = cls.getDeclaredConstructors()[0]; Sample obj5 = (Sample) obj.newInstance();
广告