【通過反射去獲取有參構造方法並使用】


package com.yjf.esupplier.common.test;

import java.lang.reflect.Constructor;

/**
 * @author shusheng
 * @description 通過反射去獲取有參構造方法並使用
 * @Email shusheng@yiji.com
 * @date 2018/12/29 13:41
 */
public class ReflectDemo {

    public static void main(String[] args) throws Exception {
        // 獲取字節碼文件對象
        Class c = Class.forName("com.yjf.esupplier.common.test.Person");
        // 獲取帶參構造方法對象
        // public Constructor<T> getConstructor(Class<?>... parameterTypes)
        Constructor con = c.getConstructor(String.class,int.class,String.class);

        // 通過帶參構造方法對象創建對象
        // public T newInstance(Object... initargs)
        Object obj = con.newInstance("林青霞", 27, "北京");

        System.out.println(obj);
    }

}
package com.yjf.esupplier.common.test;

/**
 * @author shusheng
 * @description
 * @Email shusheng@yiji.com
 * @date 2018/12/29 13:42
 */
public class Person {

        private String name;
        int age;
        public String address;

        public Person() {
        }

        private Person(String name) {
            this.name = name;
        }

        Person(String name, int age) {
            this.name = name;
            this.age = age;
        }

        public Person(String name, int age, String address) {
            this.name = name;
            this.age = age;
            this.address = address;
        }

        public void show() {
            System.out.println("show方法的輸出");
        }

        public void method(String s) {
            System.out.println("method方法的輸出: " + s);
        }

        public String getString(String s, int i) {
            return s + "---" + i;
        }

        private void function() {
            System.out.println("function方法的輸出");
        }

        @Override
        public String toString() {
            return "Person [name=" + name + ", age=" + age + ", address="
                    + address
                    + "]";
        }

}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM