Java 中建立對象的 5 種方式!

來源:codeceo
codeceo.com/article/5-ways-java-create-object.html

做爲Java開發者,咱們天天建立不少對象,但咱們一般使用依賴管理系統,好比Spring去建立對象。然而這裏有不少建立對象的方法,咱們會在這篇文章中學到。html

Java中有5種建立對象的方式,下面給出它們的例子還有它們的字節碼。java

若是你運行了末尾的的程序,你會發現方法1,2,3用構造函數建立對象,方法4,5沒有調用構造函數。面試

一、使用new關鍵字後端

這是最多見也是最簡單的建立對象的方式了。經過這種方式,咱們能夠調用任意的構造函數(無參的和帶參數的)。多線程

Employee emp1 = new Employee();
0: new           #19          // class org/programming/mitra/exercises/Employee
3: dup
4: invokespecial #21          // Method org/programming/mitra/exercises/Employee."":()V

二、使用Class類的newInstance方法架構

咱們也可使用Class類的newInstance方法建立對象。這個newInstance方法調用無參的構造函數建立對象。框架

咱們能夠經過下面方式調用newInstance方法建立對象:jvm

Employee emp2 = (Employee)
Class.forName("org.programming.mitra.exercises.Employee").newInstance();

或者ide

Employee emp2 = Employee.class.newInstance();
51: invokevirtual    #70    // Method java/lang/Class.newInstance:()Ljava/lang/Object;

三、使用Constructor類的newInstance方法函數

和Class類的newInstance方法很像, java.lang.reflect.Constructor類裏也有一個newInstance方法能夠建立對象。

咱們能夠經過這個newInstance方法調用有參數的和私有的構造函數。你們也能夠看下《instanceof、isInstance、isAssignableFrom》這篇文章。

Constructor<Employee> constructor = Employee.class.getConstructor();
Employee emp3 = constructor.newInstance();
111: invokevirtual  #80  // Method java/lang/reflect/Constructor.newInstance:(\[Ljava/lang/Object;)Ljava/lang/Object;

newInstance方法內部調用Constructor的newInstance方法。這也是衆多框架,如Spring、Hibernate、Struts等使用後者的緣由。

四、使用clone方法

不管什麼時候咱們調用一個對象的clone方法,jvm就會建立一個新的對象,將前面對象的內容所有拷貝進去。用clone方法建立對象並不會調用任何構造函數。

要使用clone方法,咱們須要先實現Cloneable接口並實現其定義的clone方法。

Employee emp4 = (Employee) emp3.clone();’
162: invokevirtual #87  // Method org/programming/mitra/exercises/Employee.clone ()Ljava/lang/Object;

五、使用反序列化

當咱們序列化和反序列化一個對象,jvm會給咱們建立一個單獨的對象。在反序列化時,jvm建立對象並不會調用任何構造函數。推薦你們看《關於Java序列化你應該知道的一切》這篇文章

爲了反序列化一個對象,咱們須要讓咱們的類實現Serializable接口。

ObjectInputStream in = new ObjectInputStream(new FileInputStream("data.obj"));
Employee emp5 = (Employee) in.readObject();
261: invokevirtual  #118
// Method java/io/ObjectInputStream.readObject:()Ljava/lang/Object;

咱們從上面的字節碼片斷能夠看到,除了第1個方法,其餘4個方法全都轉變爲invokevirtual(建立對象的直接方法),第一個方法轉變爲兩個調用,new和invokespecial(構造函數調用)。

例子

讓咱們看一看爲下面這個Employee類建立對象:

class Employee implements Cloneable, Serializable {
   private static final long serialVersionUID = 1L;
   private String name;
   public Employee() {
       System.out.println("Employee Constructor Called...");
   }
   public String getName() {
       return name;
   }
   public void setName(String name) {
       this.name = name;
   }
   @Override
   public int hashCode() {
       final int prime = 31;
       int result = 1;
       result = prime * result + ((name == null) ? 0 : name.hashCode());
       return result;
   }
   @Override
   public boolean equals(Object obj) {
       if (this == obj)
           return true;
       if (obj == null)
           return false;
       if (getClass() != obj.getClass())
           return false;
       Employee other = (Employee) obj;
       if (name == null) {
           if (other.name != null)
               return false;
       } else if (!name.equals(other.name))
           return false;
       return true;
   }
   @Override
   public String toString() {
       return "Employee [name=" + name + "]";
   }
   @Override
   public Object clone() {
       Object obj = null;
       try {
           obj = super.clone();
       } catch (CloneNotSupportedException e) {
           e.printStackTrace();
       }
       return obj;
   }
}

下面的Java程序中,咱們將用5種方式建立Employee對象。你能夠從GitHub找到這些代碼。

public class ObjectCreation {
   public static void main(String... args) throws Exception {
       // By using new keyword
       Employee emp1 = new Employee();
       emp1.setName("Naresh");
       System.out.println(emp1 + ", hashcode : " + emp1.hashCode());
       // By using Class class's newInstance() method
       Employee emp2 = (Employee) Class.forName("org.programming.mitra.exercises.Employee")
                              .newInstance();
       // Or we can simply do this
       // Employee emp2 = Employee.class.newInstance();
       emp2.setName("Rishi");
       System.out.println(emp2 + ", hashcode : " + emp2.hashCode());
       // By using Constructor class's newInstance() method
       Constructor<Employee> constructor = Employee.class.getConstructor();
       Employee emp3 = constructor.newInstance();
       emp3.setName("Yogesh");
       System.out.println(emp3 + ", hashcode : " + emp3.hashCode());
       // By using clone() method
       Employee emp4 = (Employee) emp3.clone();
       emp4.setName("Atul");
       System.out.println(emp4 + ", hashcode : " + emp4.hashCode());
       // By using Deserialization
       // Serialization
       ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("data.obj"));
       out.writeObject(emp4);
       out.close();
       //Deserialization
       ObjectInputStream in = new ObjectInputStream(new FileInputStream("data.obj"));
       Employee emp5 = (Employee) in.readObject();
       in.close();
       emp5.setName("Akash");
       System.out.println(emp5 + ", hashcode : " + emp5.hashCode());
   }
}

程序會輸出:

public class ObjectCreation {
Employee Constructor Called...
Employee [name=Naresh], hashcode : -1968815046
Employee Constructor Called...
Employee [name=Rishi], hashcode : 78970652
Employee Constructor Called...
Employee [name=Yogesh], hashcode : -1641292792
Employee [name=Atul], hashcode : 2051657
Employee [name=Akash], hashcode : 63313419

你還知作別的嗎?

推薦去個人博客閱讀更多:

1.Java JVM、集合、多線程、新特性系列教程

2.Spring MVC、Spring Boot、Spring Cloud 系列教程

3.Maven、Git、Eclipse、Intellij IDEA 系列工具教程

4.Java、後端、架構、阿里巴巴等大廠最新面試題

以爲不錯,別忘了點贊+轉發哦!

相關文章
相關標籤/搜索