Java 创建对象的几种方式
Posted 光脚造轮子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 创建对象的几种方式相关的知识,希望对你有一定的参考价值。
Java 创建对象的几种方式
-
使用new关键字
Student student = new Student();
-
Class 类的 newInstance() 方法
? 我们也可以使用 Class 类的 newInstance() 方法创建对象,如:
Student student2 = (Student)Class.forName(className全类名).newInstance(); // 或者: Student stu = Student.class.newInstance();
-
Constructor 类的 newInstance() 方法
该方式和 Class 类的 newInstance() 方法很像。java.lang.relect.Constructor 类里也有一个newInstance方法可以创建对象。我们可以通过这个 newInstance() 方法调用有参数的和私有的构造函数。Constructor 类 -- > 声明构造函数的类
Constructor<Student> constructor = Student.class.getConstructor(); Student stu = constructor.newInstance();
-
Clone()
无论何时我们调用一个对象的 clone() 方法,JVM 都会创建一个新的对象,同时将前面的对象的内容全部拷贝进去。事实上,用 clone() 方法创建对象并不会调用任何构造函数。需要注意的是,要使用 clone 方法,我们必须先实现 Cloneable 接口并实现其定义的 clone() 方法。Student stu2 = <Student>stu.clone();
-
反序列化
Java 中常常进行 JSON 数据跟 Java 对象之间的转换,即序列化和反序列化。
当我们序列化和反序列化一个对象,JVM 会给我们创建一个单独的对象,在反序列化时,JVM 创建对象并不会调用任何构造函数。为了反序列化一个对象,我们需要让我们的类实现 Serializable 接口,虽然该接口没有任何方法。ObjectInputStream in = new ObjectInputStream (new FileInputStream("data.obj")); Student stu3 = (Student)in.readObject();
以上是关于Java 创建对象的几种方式的主要内容,如果未能解决你的问题,请参考以下文章