때때로 다음과 같은 인터뷰 질문을 접할 수도 있습니다.
Java에서 객체를 생성하는 방법은 무엇입니까?
new 외에 Java로 객체를 생성하는 다른 방법은 무엇입니까?
이 기사는 Java에서 객체를 생성하는 여러 가지 방법을 제공하는 예제를 결합합니다. . 예:
Book book = new Book();
예는 다음과 같습니다.object.clone() 사용
package test; import java.io.Serializable; import java.util.List; /** * @author wangmengjun * */ public class Book implements Serializable{ private static final long serialVersionUID = -6212470156629515269L; /**书名*/ private String name; /**作者*/ private List<String> authors; /**ISBN*/ private String isbn; /**价格*/ private float price; public Book() { } /** * @param name * @param authors * @param isbn * @param price */ public Book(String name, List<String> authors, String isbn, float price) { this.name = name; this.authors = authors; this.isbn = isbn; this.price = price; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the authors */ public List<String> getAuthors() { return authors; } /** * @param authors the authors to set */ public void setAuthors(List<String> authors) { this.authors = authors; } /** * @return the isbn */ public String getIsbn() { return isbn; } /** * @param isbn the isbn to set */ public void setIsbn(String isbn) { this.isbn = isbn; } /** * @return the price */ public float getPrice() { return price; } /** * @param price the price to set */ public void setPrice(float price) { this.price = price; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "Book [name=" + name + ", authors=" + authors + ", isbn=" + isbn + ", price=" + price + "]"; } }clone 메소드를 호출하려면 객체가 Cloneable 인터페이스를 구현하고 clone() 메소드를 재정의해야 합니다.
/** * 1. 使用new创建对象 */ Book book1 = new Book(); book1.setName("Redis"); book1.setAuthors(Arrays.asList("Eric", "John")); book1.setPrice(59.00f); book1.setIsbn("ABBBB-QQ677868686-HSDKHFKHKH-2324234"); System.out.println(book1);
수정된 Book 클래스는 다음과 같습니다.
Class.newInstance() 사용Class.forName("xxx.xx")을 직접 사용할 수 있습니다. newInstance( ) 메소드 또는 XXX.class.newInstance()가 완료되었습니다.package test;import java.io.Serializable;import java.util.List;/** * @author wangmengjun * */public class Book implements Serializable, Cloneable { private static final long serialVersionUID = -6212470156629515269L; /**书名*/ private String name; /**作者*/ private List<String> authors; /**ISBN*/ private String isbn; /**价格*/ private float price; public Book() { } /** * @param name * @param authors * @param isbn * @param price */ public Book(String name, List<String> authors, String isbn, float price) { this.name = name; this.authors = authors; this.isbn = isbn; this.price = price; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the authors */ public List<String> getAuthors() { return authors; } /** * @param authors the authors to set */ public void setAuthors(List<String> authors) { this.authors = authors; } /** * @return the isbn */ public String getIsbn() { return isbn; } /** * @param isbn the isbn to set */ public void setIsbn(String isbn) { this.isbn = isbn; } /** * @return the price */ public float getPrice() { return price; } /** * @param price the price to set */ public void setPrice(float price) { this.price = price; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "Book [name=" + name + ", authors=" + authors + ", isbn=" + isbn + ", price=" + price + "]"; } @Override protected Object clone() throws CloneNotSupportedException { return (Book) super.clone(); } }Contructor.newInstance()를 사용하면 생성할 생성자를 지정할 수 있습니다. 예를 들어 생성할 생성자 매개변수 유형을 지정할 수도 있습니다.
/** * 3. 使用Class.newInstance(); */ try { Book book3 = (Book) Class.forName("test.Book").newInstance(); System.out.println(book3); book3 = Book.class.newInstance(); System.out.println(book3); } catch (InstantiationException | IllegalAccessException | ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); }Class.newInstance() 또는 Constructor.newInstance()를 사용합니다. 본질은 동일하며 둘 다 반사 메커니즘을 사용합니다. 역직렬화 사용
/** * 4. 使用Constructor.newInstance(); */ try { //选择第一个构造器创建Book Book book4 = (Book) Book.class.getConstructors()[0].newInstance(); //Book [name=null, authors=null, isbn=null, price=0.0] System.out.println(book4); /** * 调用指定构造函数创建对象 */ book4 = (Book) Book.class.getConstructor(String.class, List.class, String.class, float.class).newInstance("New Instance Example", Arrays.asList("Wang", "Eric"), "abc1111111-def-33333", 60.00f); //Book [name=New Instance Example, authors=[Wang, Eric], isbn=abc1111111-def-33333, price=60.0] System.out.println(book4); } catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException | SecurityException | NoSuchMethodException e) { // TODO Auto-generated catch block e.printStackTrace(); }물론 위의 방법 외에도 JNI 및 기타 방법을 사용하여 여기에 나열되지 않은 객체를 생성할 수도 있습니다. 전체 샘플 코드는 다음과 같습니다.
/** * 5. 使用反序列化 */ try (ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("book.dat")); ObjectInputStream ois = new ObjectInputStream(new FileInputStream("book.dat"));) { oos.writeObject(book1); Book book5 = (Book) ois.readObject(); System.out.println(book5); } catch (IOException | ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); }
Book.java
CreateObjectExample.javapackage test;import java.io.Serializable;import java.util.List;/** * @author wangmengjun * */public class Book implements Serializable, Cloneable { private static final long serialVersionUID = -6212470156629515269L; /**书名*/ private String name; /**作者*/ private List<String> authors; /**ISBN*/ private String isbn; /**价格*/ private float price; public Book() { } /** * @param name * @param authors * @param isbn * @param price */ public Book(String name, List<String> authors, String isbn, float price) { this.name = name; this.authors = authors; this.isbn = isbn; this.price = price; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the authors */ public List<String> getAuthors() { return authors; } /** * @param authors the authors to set */ public void setAuthors(List<String> authors) { this.authors = authors; } /** * @return the isbn */ public String getIsbn() { return isbn; } /** * @param isbn the isbn to set */ public void setIsbn(String isbn) { this.isbn = isbn; } /** * @return the price */ public float getPrice() { return price; } /** * @param price the price to set */ public void setPrice(float price) { this.price = price; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "Book [name=" + name + ", authors=" + authors + ", isbn=" + isbn + ", price=" + price + "]"; } @Override protected Object clone() throws CloneNotSupportedException { return (Book) super.clone(); } }