程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Java中創立對象的5種方式總結

Java中創立對象的5種方式總結

編輯:關於JAVA

Java中創立對象的5種方式總結。本站提示廣大學習愛好者:(Java中創立對象的5種方式總結)文章只能為提供參考,不一定能成為您想要的結果。以下是Java中創立對象的5種方式總結正文


作為Java開發者,我們每天創立很多對象,但我們通常運用依賴管理零碎,比方Spring去創立對象。但是這裡有很多創立對象的辦法,我們會在這篇文章中學到。

Java中有5種創立對象的方式,上面給出它們的例子還有它們的字節碼

運用new關鍵字 } → 調用了結構函數 運用Class類的newInstance辦法 } → 調用了結構函數 運用Constructor類的newInstance辦法 } → 調用了結構函數 運用clone辦法 } → 沒有調用結構函數 運用反序列化 } → 沒有調用結構函數

作為Java開發者,我們每天創立很多對象,但我們通常運用依賴管理零碎,比方Spring去創立對象。但是這裡有很多創立對象的辦法,我們會在這篇文章中學到。

Java中有5種創立對象的方式,上面給出它們的例子還有它們的字節碼

假如你運轉了末尾的的順序,你會發現辦法1,2,3用結構函數創立對象,辦法4,5沒有調用結構函數。

1.運用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

2.運用Class類的newInstance辦法

我們也可以運用Class類的newInstance辦法創立對象。這個newInstance辦法調用無參的結構函數創立對象。

我們可以經過上面方式調用newInstance辦法創立對象: 

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

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

3.運用Constructor類的newInstance辦法

和Class類的newInstance辦法很像, java.lang.reflect.Constructor類裡也有一個newInstance辦法可以創立對象。我們可以經過這個newInstance辦法調用有參數的和公有的結構函數。

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辦法就是大家所說的反射。現實上Class的newInstance辦法外部調用Constructor的newInstance辦法。這也是眾多框架,如Spring、Hibernate、Struts等運用後者的緣由。想理解這兩個newInstance辦法的區別,

4.運用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;

5.運用反序列化

當我們序列化和反序列化一個對象,jvm會給我們創立一個獨自的對象。在反序列化時,jvm創立對象並不會調用任何結構函數。

為了反序列化一個對象,我們需求讓我們的類完成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對象。

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());
  }
}

順序會輸入:

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. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved