简体   繁体   中英

Java class that represent method name and formal parameters

Is there a JDK Java class that represents a method name and formal parameters without the declaraing class. If I use the Java class Method from java.lang.reflect I usually get

too much information:

public class Method

clazz: The declaring class
name: The method name
parameterTypes: The formal parameters
Etc..

I am seeking a class which already exists in the JDK and which would cover:

public class ??

name: The method name
parameterTypes: The formal parameters

There's no such class in the JDK to the best of my knowledge. But you could create one and use it to generate an actual java.lang.reflect.Method by demand:.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM