> Java > java지도 시간 > Java에서 객체를 생성하는 여러 가지 방법

Java에서 객체를 생성하는 여러 가지 방법

高洛峰
풀어 주다: 2016-11-22 12:47:01
원래의
1610명이 탐색했습니다.

때때로 다음과 같은 인터뷰 질문을 접할 수도 있습니다.

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.java

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

}
로그인 후 복사
로그인 후 복사

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿