Java.lang.Class类 getDeclaredConstructor()方法有什么功能呢?

Java-教程王 Java教程 发布时间:2021-09-04 23:34:33 阅读数:5481 1
下文讲述Class类中的getDeclaredConstructor()方法的功能,如下所示:

getDeclaredConstructor()方法的功能

java.lang.Class.getDeclaredConstructor()方法的功能
根据参数类型,返回一个构造器
    注意事项:
       即使是private的构造器也会被返回

getDeclaredConstructor()方法的语法

语法
  public Constructor<T> getDeclaredConstructor(Class<T>... parameterTypes) throws NoSuchMethodException, SecurityException
参数
   parameterTypes:这是参数数组

返回值
   返回指定参数列表的构造函数
例:
getDeclaredConstructor()方法的示例分享
package com.java.other;
import java.lang.reflect.Constructor;
import org.junit.Test;
public class other {
	/**
	 * java265.com java.lang.Class 测试示例分享
	 */
	@Test
	public void test() {
		try {
			Class t[] = new Class[] { int.class, float.class };
			Constructor c = java.util.HashMap.class.getDeclaredConstructor(t);
			System.out.println(c);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
------运行以上代码,将输出以下信息----
public java.util.HashMap(int,float)
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/202109/1010.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者