java.lang.Class.getConstructor(Class[] parameterTypes)

Visual Studio 2005
1(共 1)对本文的评价是有帮助 评价此主题

Gets the public constructor that takes the given arguments.

J#
public java.lang.reflect.Constructor getConstructor(java.lang.Class[ ] parameterTypes)

Parameters
Parameter Description

parameterTypes

An array of bf6c9478-b86e-41e1-b8c9-48372912df0a objects representing the arguments to the constructor. A 5c106966-ba6e-4e68-8ed8-e4131d1bebff is thrown if there is no constructor with the given parameter types or if the constructor does not have public access.

6350a6f2-aaa4-4243-a87e-bb08980b51a8 object representing the constructor that accepts the given parameter types.

// class_getconstructor.jsl

import java.lang.reflect.Constructor;

public class Program
{
    public static void main(String[] args)
    {
        try
        {
            // Get the Class object associated with this class.
            Program program = new Program();
            Class progClass = program.getClass();

            // Find the constructor that only takes a String.
            Class[] ctorArgs1 = new Class[1];
            ctorArgs1[0] = String.class;
            Constructor strCtor = progClass.getConstructor(ctorArgs1);
            System.out.println("Constructor found: " +
                strCtor.toString());

            // Find the constructor that takes a String and an int.
            Class[] ctorArgs2 = new Class[2];
            ctorArgs2[0] = String.class;
            ctorArgs2[1] = Integer.class;
            Constructor strIntCtor = progClass.getConstructor(ctorArgs2);
            System.out.println("Constructor found: " +
                strIntCtor.toString());
        }
        catch (NoSuchMethodException ex)
        {
            System.out.println("Constructor doesn't exist or is " +
                "not public: " + ex.toString());
        }
    }

    public Program()
    {
    }

    public Program(String str)
    {
        this.str = str;
    }

    private Program(String str, Integer i)
    {
        this.str = str;
        this.i = i;
    }

    private String str = "Hello";
    private Integer i = new Integer(0);
}

/*
Output:
Constructor found: public Program(java.lang.String)
Constructor doesn't exist or is not public: java.lang.NoSuchMethodException
*/

原文出自:http://msdn.microsoft.com/zh-cn/library/aa986011
Java 9 及更高版本中,可以使用 `clazz.getConstructor(Class<?>... parameterTypes)` 方法来获取指定参数类型的构造函数。该方法的参数是一个可变参数,用于指定构造函数的参数类型。 以下是一个使用 `getConstructor()` 方法获取构造函数的示例: ```java import java.lang.reflect.Constructor; public class ReflectionDemo { public static void main(String[] args) { try { // 获取类的信息 Class<MyClass> clazz = MyClass.class; // 获取指定参数类型的构造函数 Constructor<MyClass> constructor = clazz.getConstructor(String.class, int.class); // 使用构造函数实例化对象 MyClass obj = constructor.newInstance("Example", 10); // 调用对象的方法 obj.printInfo(); } catch (Exception e) { e.printStackTrace(); } } } class MyClass { private String name; private int age; public MyClass(String name, int age) { this.name = name; this.age = age; } public void printInfo() { System.out.println("Name: " + name); System.out.println("Age: " + age); } } ``` 在上述示例中,使用 `getConstructor(String.class, int.class)` 获取具有 `String` 和 `int` 参数类型的构造函数,然后使用 `newInstance()` 方法来实例化 `MyClass` 对象,并传入参数值 "Example" 和 10。最后调用对象的 `printInfo()` 方法打印对象的信息。 请注意,该示例仅适用于 Java 9 及更高版本,因为在 Java 8 及更早的版本中,`getConstructor()` 方法只接受一个参数 `Class<?>[] parameterTypes`,而不是可变参数。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值