Uses of Class
java.lang.reflect.Constructor
-
Packages that use Constructor 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.lang.invoke java.lang.invoke
软件包包含由Java核心类库和虚拟机直接提供的动态语言支持。java.lang.reflect 提供用于获取关于类和对象的反射信息的类和接口。javax.management 提供Java管理扩展的核心类。javax.management.modelmbean 提供ModelMBean类的定义。jdk.dynalink.linker.support 包含课程,使语言运行时更方便地实现自己的特定于语言的对象模型,并通过提供一些类的基本实现以及各种实用程序来类型转换。 -
-
Uses of Constructor in java.lang
Methods in java.lang that return Constructor Modifier and Type 方法 描述 Constructor<T>
Class. getConstructor(Class<?>... parameterTypes)
返回一个Constructor
对象,该对象反映由该Class
对象表示的类的指定公共构造函数。Constructor<?>[]
Class. getConstructors()
返回一个包含Constructor
对象的数组,Constructor
对象反映由该Class
对象表示的类的所有公共构造函数。Constructor<T>
Class. getDeclaredConstructor(Class<?>... parameterTypes)
返回一个Constructor
对象,该对象反映由该Class
对象表示的类或接口的指定构造函数。Constructor<?>[]
Class. getDeclaredConstructors()
返回一个Constructor
对象的数组,反映由该Class
对象表示的类声明的所有构造函数。Constructor<?>
Class. getEnclosingConstructor()
如果此Class
对象表示构造函数中的本地或匿名类,则返回表示基础类的直接包含构造函数的Constructor
对象。 -
Uses of Constructor in java.lang.invoke
Methods in java.lang.invoke with parameters of type Constructor Modifier and Type 方法 描述 MethodHandle
MethodHandles.Lookup. unreflectConstructor(Constructor<?> c)
为反射的构造函数生成方法句柄。 -
Uses of Constructor in java.lang.reflect
Methods in java.lang.reflect that return types with arguments of type Constructor Modifier and Type 方法 描述 TypeVariable<Constructor<T>>[]
Constructor. getTypeParameters()
返回一个TypeVariable
对象的数组,TypeVariable
以声明顺序表示由该GenericDeclaration
对象表示的通用声明声明的类型变量。 -
Uses of Constructor in javax.management
Constructors in javax.management with parameters of type Constructor Constructor 描述 MBeanConstructorInfo(String description, Constructor<?> constructor)
构造一个MBeanConstructorInfo
对象。 -
Uses of Constructor in javax.management.modelmbean
Constructors in javax.management.modelmbean with parameters of type Constructor Constructor 描述 ModelMBeanConstructorInfo(String description, Constructor<?> constructorMethod)
使用默认描述符构造一个ModelMBeanConstructorInfo对象。ModelMBeanConstructorInfo(String description, Constructor<?> constructorMethod, Descriptor descriptor)
构造一个ModelMBeanConstructorInfo对象。 -
Uses of Constructor in jdk.dynalink.linker.support
Methods in jdk.dynalink.linker.support with parameters of type Constructor Modifier and Type 方法 描述 static MethodHandle
Lookup. unreflectConstructor(MethodHandles.Lookup lookup, Constructor<?> c)
MethodHandle
Lookup. unreflectConstructor(Constructor<?> c)
-