ถ้าฉันมีตัวแปรสองตัว:
Object obj;
String methodName = "getName";
obj
ฉันจะเรียกวิธีการที่ระบุโดยmethodName
บนคลาสได้อย่างไร?
วิธีการที่ถูกเรียกไม่มีพารามิเตอร์และString
ค่าตอบแทน มันทะเยอทะยานสำหรับถั่วจาวา
ถ้าฉันมีตัวแปรสองตัว:
Object obj;
String methodName = "getName";
obj
ฉันจะเรียกวิธีการที่ระบุโดยmethodName
บนคลาสได้อย่างไร?
วิธีการที่ถูกเรียกไม่มีพารามิเตอร์และString
ค่าตอบแทน มันทะเยอทะยานสำหรับถั่วจาวา
คำตอบ:
การเข้ารหัสจากสะโพกมันจะเป็นสิ่งที่ชอบ:
java.lang.reflect.Method method;
try {
method = obj.getClass().getMethod(methodName, param1.class, param2.class, ..);
} catch (SecurityException e) { ... }
catch (NoSuchMethodException e) { ... }
พารามิเตอร์จะระบุวิธีการเฉพาะที่คุณต้องการ (หากมีการใช้งานมากเกินไปหลายตัวหากวิธีนั้นไม่มีข้อโต้แย้งให้เท่านั้น methodName
)
จากนั้นคุณเรียกใช้วิธีการนั้นโดยการโทร
try {
method.invoke(obj, arg1, arg2,...);
} catch (IllegalArgumentException e) { ... }
catch (IllegalAccessException e) { ... }
catch (InvocationTargetException e) { ... }
.invoke
ถ้าคุณยังไม่มีข้อโต้แย้งใด ๆ แต่ใช่ อ่านเกี่ยวกับJava Reflection
method
method.invoke(obj, arg1, arg2,...);
การmethod = null;
แก้ปัญหา แต่การกล่าวถึงในคำตอบนั้นไม่ใช่ความคิดที่ไม่ดี
invoke
ก็จะคืนค่าที่คืนกลับมา InvocationTargetException
หากเกิดข้อยกเว้นการเรียกใช้วิธีการยกเว้นจะถูกห่อใน
ใช้วิธีการภาวนาจากการสะท้อน:
Class<?> c = Class.forName("class name");
Method method = c.getDeclaredMethod("method name", parameterTypes);
method.invoke(objectToInvokeOn, params);
ที่ไหน:
"class name"
เป็นชื่อของคลาสobjectToInvokeOn
เป็นประเภทวัตถุและเป็นวัตถุที่คุณต้องการเรียกใช้วิธีการ"method name"
เป็นชื่อของวิธีการที่คุณต้องการโทรparameterTypes
เป็นชนิดClass[]
และประกาศพารามิเตอร์ที่วิธีการใช้params
เป็นประเภทObject[]
และประกาศพารามิเตอร์ที่จะส่งผ่านไปยังวิธีการสำหรับผู้ที่ต้องการตัวอย่างรหัสตรงไปตรงมาใน Java 7:
Dog
ระดับ:
package com.mypackage.bean;
public class Dog {
private String name;
private int age;
public Dog() {
// empty constructor
}
public Dog(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public void printDog(String name, int age) {
System.out.println(name + " is " + age + " year(s) old.");
}
}
ReflectionDemo
ระดับ:
package com.mypackage.demo;
import java.lang.reflect.*;
public class ReflectionDemo {
public static void main(String[] args) throws Exception {
String dogClassName = "com.mypackage.bean.Dog";
Class<?> dogClass = Class.forName(dogClassName); // convert string classname to class
Object dog = dogClass.newInstance(); // invoke empty constructor
String methodName = "";
// with single parameter, return void
methodName = "setName";
Method setNameMethod = dog.getClass().getMethod(methodName, String.class);
setNameMethod.invoke(dog, "Mishka"); // pass arg
// without parameters, return string
methodName = "getName";
Method getNameMethod = dog.getClass().getMethod(methodName);
String name = (String) getNameMethod.invoke(dog); // explicit cast
// with multiple parameters
methodName = "printDog";
Class<?>[] paramTypes = {String.class, int.class};
Method printDogMethod = dog.getClass().getMethod(methodName, paramTypes);
printDogMethod.invoke(dog, name, 3); // pass args
}
}
เอาท์พุท:
Mishka is 3 year(s) old.
คุณสามารถเรียกใช้ตัวสร้างด้วยพารามิเตอร์ด้วยวิธีนี้:
Constructor<?> dogConstructor = dogClass.getConstructor(String.class, int.class);
Object dog = dogConstructor.newInstance("Hachiko", 10);
หรือคุณสามารถลบ
String dogClassName = "com.mypackage.bean.Dog";
Class<?> dogClass = Class.forName(dogClassName);
Object dog = dogClass.newInstance();
และทำ
Dog dog = new Dog();
Method method = Dog.class.getMethod(methodName, ...);
method.invoke(dog, ...);
การอ่านที่แนะนำ: การสร้างอินสแตนซ์ของคลาสใหม่
Method
สิ่งของที่ไหน
วิธีนี้สามารถเรียกใช้เช่นนี้ได้ นอกจากนี้ยังมีความเป็นไปได้อีกมาก (ตรวจสอบการสะท้อนกลับ API) แต่นี่เป็นวิธีที่ง่ายที่สุด:
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.junit.Assert;
import org.junit.Test;
public class ReflectionTest {
private String methodName = "length";
private String valueObject = "Some object";
@Test
public void testGetMethod() throws SecurityException, NoSuchMethodException, IllegalArgumentException,
IllegalAccessException, InvocationTargetException {
Method m = valueObject.getClass().getMethod(methodName, new Class[] {});
Object ret = m.invoke(valueObject, new Object[] {});
Assert.assertEquals(11, ret);
}
}
ก่อนอื่นเลย หลีกเลี่ยงรหัสประเภทนี้ มันมีแนวโน้มที่จะเป็นรหัสที่ไม่ดีและไม่ปลอดภัยเช่นกัน (ดูหมวดที่ 6 ของแนวทางการเข้ารหัสอย่างปลอดภัยสำหรับภาษาการเขียนโปรแกรม Java รุ่น 2.0 )
หากคุณต้องทำเช่นนั้นให้เลือก java.beans เพื่อสะท้อน ถั่วห่อหุ้มการสะท้อนช่วยให้การเข้าถึงที่ค่อนข้างปลอดภัยและธรรมดา
เพื่อให้คำตอบของเพื่อนร่วมงานของคุณสมบูรณ์คุณอาจต้องใส่ใจกับ:
นี่คือโค้ด java1.4 เก่าซึ่งคำนึงถึงคะแนนเหล่านั้น:
/**
* Allow for instance call, avoiding certain class circular dependencies. <br />
* Calls even private method if java Security allows it.
* @param aninstance instance on which method is invoked (if null, static call)
* @param classname name of the class containing the method
* (can be null - ignored, actually - if instance if provided, must be provided if static call)
* @param amethodname name of the method to invoke
* @param parameterTypes array of Classes
* @param parameters array of Object
* @return resulting Object
* @throws CCException if any problem
*/
public static Object reflectionCall(final Object aninstance, final String classname, final String amethodname, final Class[] parameterTypes, final Object[] parameters) throws CCException
{
Object res;// = null;
try {
Class aclass;// = null;
if(aninstance == null)
{
aclass = Class.forName(classname);
}
else
{
aclass = aninstance.getClass();
}
//Class[] parameterTypes = new Class[]{String[].class};
final Method amethod = aclass.getDeclaredMethod(amethodname, parameterTypes);
AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
amethod.setAccessible(true);
return null; // nothing to return
}
});
res = amethod.invoke(aninstance, parameters);
} catch (final ClassNotFoundException e) {
throw new CCException.Error(PROBLEM_TO_ACCESS+classname+CLASS, e);
} catch (final SecurityException e) {
throw new CCException.Error(PROBLEM_TO_ACCESS+classname+GenericConstants.HASH_DIESE+ amethodname + METHOD_SECURITY_ISSUE, e);
} catch (final NoSuchMethodException e) {
throw new CCException.Error(PROBLEM_TO_ACCESS+classname+GenericConstants.HASH_DIESE+ amethodname + METHOD_NOT_FOUND, e);
} catch (final IllegalArgumentException e) {
throw new CCException.Error(PROBLEM_TO_ACCESS+classname+GenericConstants.HASH_DIESE+ amethodname + METHOD_ILLEGAL_ARGUMENTS+String.valueOf(parameters)+GenericConstants.CLOSING_ROUND_BRACKET, e);
} catch (final IllegalAccessException e) {
throw new CCException.Error(PROBLEM_TO_ACCESS+classname+GenericConstants.HASH_DIESE+ amethodname + METHOD_ACCESS_RESTRICTION, e);
} catch (final InvocationTargetException e) {
throw new CCException.Error(PROBLEM_TO_ACCESS+classname+GenericConstants.HASH_DIESE+ amethodname + METHOD_INVOCATION_ISSUE, e);
}
return res;
}
Object obj;
Method method = obj.getClass().getMethod("methodName", null);
method.invoke(obj, null);
//Step1 - Using string funClass to convert to class
String funClass = "package.myclass";
Class c = Class.forName(funClass);
//Step2 - instantiate an object of the class abov
Object o = c.newInstance();
//Prepare array of the arguments that your function accepts, lets say only one string here
Class[] paramTypes = new Class[1];
paramTypes[0]=String.class;
String methodName = "mymethod";
//Instantiate an object of type method that returns you method name
Method m = c.getDeclaredMethod(methodName, paramTypes);
//invoke method with actual params
m.invoke(o, "testparam");
หากคุณโทรหลายครั้งคุณสามารถใช้วิธีการจัดการใหม่ที่แนะนำใน Java 7 ที่นี่เราไปสำหรับวิธีการของคุณกลับสตริง:
Object obj = new Point( 100, 200 );
String methodName = "toString";
Class<String> resultType = String.class;
MethodType mt = MethodType.methodType( resultType );
MethodHandle methodHandle = MethodHandles.lookup().findVirtual( obj.getClass(), methodName, mt );
String result = resultType.cast( methodHandle.invoke( obj ) );
System.out.println( result ); // java.awt.Point[x=100,y=200]
invokeExact
ทุกครั้งที่ทำได้ สำหรับสิ่งนั้นลายเซ็นไซต์การโทรต้องตรงกับประเภทการจัดการวิธี โดยปกติจะใช้เวลาเล็กน้อยในการทำงาน ในกรณีนี้คุณจะต้องใช้พารามิเตอร์ตัวแรกด้วย: methodHandle = methodHandle.asType(methodHandle.type().changeParameterType(0, Object.class));
แล้วจึงเรียกใช้เช่นString result = (String) methodHandle.invokeExact(obj);
ดูเหมือนจะเป็นสิ่งที่สามารถทำได้ด้วยแพ็คเกจ Java Reflection
http://java.sun.com/developer/technicalArticles/ALT/Reflection/index.html
โดยเฉพาะอย่างยิ่งภายใต้วิธีการเรียกใช้ตามชื่อ:
นำเข้า java.lang.reflect. *;
public class method2 {
public int add(int a, int b)
{
return a + b;
}
public static void main(String args[])
{
try {
Class cls = Class.forName("method2");
Class partypes[] = new Class[2];
partypes[0] = Integer.TYPE;
partypes[1] = Integer.TYPE;
Method meth = cls.getMethod(
"add", partypes);
method2 methobj = new method2();
Object arglist[] = new Object[2];
arglist[0] = new Integer(37);
arglist[1] = new Integer(47);
Object retobj
= meth.invoke(methobj, arglist);
Integer retval = (Integer)retobj;
System.out.println(retval.intValue());
}
catch (Throwable e) {
System.err.println(e);
}
}
}
คุณสามารถใช้FunctionalInterface
เพื่อบันทึกวิธีการในภาชนะเพื่อจัดทำดัชนีพวกเขา คุณสามารถใช้คอนเทนเนอร์อาเรย์เพื่อเรียกใช้โดยใช้ตัวเลขหรือ hashmap เพื่อเรียกใช้โดยใช้สตริง โดยเคล็ดลับนี้คุณสามารถดัชนีวิธีการของคุณที่จะเรียกพวกเขาแบบไดนามิกได้เร็วขึ้น
@FunctionalInterface
public interface Method {
double execute(int number);
}
public class ShapeArea {
private final static double PI = 3.14;
private Method[] methods = {
this::square,
this::circle
};
private double square(int number) {
return number * number;
}
private double circle(int number) {
return PI * number * number;
}
public double run(int methodIndex, int number) {
return methods[methodIndex].execute(aNumber);
}
}
คุณสามารถใช้แลมบ์ดาไวยากรณ์ได้:
public class ShapeArea {
private final static double PI = 3.14;
private Method[] methods = {
number -> {
return number * number;
},
number -> {
return PI * number * number;
},
};
public double run(int methodIndex, int number) {
return methods[methodIndex].execute(aNumber);
}
}
O(1)
สำหรับการทำดัชนีจำนวนเต็มความยากลำบากของขั้นตอนวิธีคือ
Method method = someVariable.class.getMethod(SomeClass);
String status = (String) method.invoke(method);
SomeClass
เป็นคลาสและsomeVariable
เป็นตัวแปร
ฉันทำสิ่งนี้:
try {
YourClass yourClass = new YourClass();
Method method = YourClass.class.getMethod("yourMethodName", ParameterOfThisMethod.class);
method.invoke(yourClass, parameter);
} catch (Exception e) {
e.printStackTrace();
}
โปรดอ้างอิงรหัสต่อไปนี้อาจช่วยคุณได้
public static Method method[];
public static MethodClass obj;
public static String testMethod="A";
public static void main(String args[])
{
obj=new MethodClass();
method=obj.getClass().getMethods();
try
{
for(int i=0;i<method.length;i++)
{
String name=method[i].getName();
if(name==testMethod)
{
method[i].invoke(name,"Test Parameters of A");
}
}
}
catch(Exception ex)
{
System.out.println(ex.getMessage());
}
}
ขอบคุณ ....
นี่คือความพร้อมในการใช้วิธีการ:
ในการเรียกใช้เมธอดโดยไม่มีอาร์กิวเมนต์:
public static void callMethodByName(Object object, String methodName) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
object.getClass().getDeclaredMethod(methodName).invoke(object);
}
ในการเรียกใช้เมธอดด้วยอาร์กิวเมนต์:
public static void callMethodByName(Object object, String methodName, int i, String s) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
object.getClass().getDeclaredMethod(methodName, int.class, String.class).invoke(object, i, s);
}
ใช้วิธีการด้านบนดังต่อไปนี้:
package practice;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
public class MethodInvoke {
public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, IOException {
String methodName1 = "methodA";
String methodName2 = "methodB";
MethodInvoke object = new MethodInvoke();
callMethodByName(object, methodName1);
callMethodByName(object, methodName2, 1, "Test");
}
public static void callMethodByName(Object object, String methodName) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
object.getClass().getDeclaredMethod(methodName).invoke(object);
}
public static void callMethodByName(Object object, String methodName, int i, String s) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
object.getClass().getDeclaredMethod(methodName, int.class, String.class).invoke(object, i, s);
}
void methodA() {
System.out.println("Method A");
}
void methodB(int i, String s) {
System.out.println("Method B: "+"\n\tParam1 - "+i+"\n\tParam 2 - "+s);
}
}
เอาท์พุท:
วิธีการ วิธีการ B: Param1 - 1 พารามิเตอร์ 2 - ทดสอบ
class Student{
int rollno;
String name;
void m1(int x,int y){
System.out.println("add is" +(x+y));
}
private void m3(String name){
this.name=name;
System.out.println("danger yappa:"+name);
}
void m4(){
System.out.println("This is m4");
}
}
import java.lang.reflect.Method;
public class StudentTest{
public static void main(String[] args){
try{
Class cls=Student.class;
Student s=(Student)cls.newInstance();
String x="kichha";
Method mm3=cls.getDeclaredMethod("m3",String.class);
mm3.setAccessible(true);
mm3.invoke(s,x);
Method mm1=cls.getDeclaredMethod("m1",int.class,int.class);
mm1.invoke(s,10,20);
}
catch(Exception e){
e.printStackTrace();
}
}
}
คุณควรใช้สะท้อน - init วัตถุชั้นแล้ววิธีการในชั้นนี้แล้วเรียกวิธีการนี้กับวัตถุที่มีตัวเลือกพารามิเตอร์ อย่าลืมห่อตัวอย่างต่อไปนี้ในบล็อคลองจับ
หวังว่ามันจะช่วย!
Class<?> aClass = Class.forName(FULLY_QUALIFIED_CLASS_NAME);
Method method = aClass.getMethod(methodName, YOUR_PARAM_1.class, YOUR_PARAM_2.class);
method.invoke(OBJECT_TO_RUN_METHOD_ON, YOUR_PARAM_1, YOUR_PARAM_2);
นี่ใช้ได้ดีสำหรับฉัน:
public class MethodInvokerClass {
public static void main(String[] args) throws NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, ClassNotFoundException, InvocationTargetException, InstantiationException {
Class c = Class.forName(MethodInvokerClass.class.getName());
Object o = c.newInstance();
Class[] paramTypes = new Class[1];
paramTypes[0]=String.class;
String methodName = "countWord";
Method m = c.getDeclaredMethod(methodName, paramTypes);
m.invoke(o, "testparam");
}
public void countWord(String input){
System.out.println("My input "+input);
}
}
เอาท์พุท:
My input testparam
ฉันสามารถเรียกใช้เมธอดได้โดยส่งชื่อไปยังเมธอดอื่น (เช่น main)
การใช้ import java.lang.reflect.*;
public static Object launchProcess(String className, String methodName, Class<?>[] argsTypes, Object[] methodArgs)
throws Exception {
Class<?> processClass = Class.forName(className); // convert string classname to class
Object process = processClass.newInstance(); // invoke empty constructor
Method aMethod = process.getClass().getMethod(methodName,argsTypes);
Object res = aMethod.invoke(process, methodArgs); // pass arg
return(res);
}
และนี่คือวิธีที่คุณใช้:
String className = "com.example.helloworld";
String methodName = "print";
Class<?>[] argsTypes = {String.class, String.class};
Object[] methArgs = { "hello", "world" };
launchProcess(className, methodName, argsTypes, methArgs);
ด้วยjooRเป็นเพียง:
on(obj).call(methodName /*params*/).get()
นี่คือตัวอย่างที่ละเอียดมากขึ้น:
public class TestClass {
public int add(int a, int b) { return a + b; }
private int mul(int a, int b) { return a * b; }
static int sub(int a, int b) { return a - b; }
}
import static org.joor.Reflect.*;
public class JoorTest {
public static void main(String[] args) {
int add = on(new TestClass()).call("add", 1, 2).get(); // public
int mul = on(new TestClass()).call("mul", 3, 4).get(); // private
int sub = on(TestClass.class).call("sub", 6, 5).get(); // static
System.out.println(add + ", " + mul + ", " + sub);
}
}
ภาพพิมพ์นี้:
3, 12, 1
สำหรับฉันวิธีการพิสูจน์ที่ง่ายและโง่ก็คือการทำให้วิธีการเรียกวิธีเช่น:
public static object methodCaller(String methodName)
{
if(methodName.equals("getName"))
return className.getName();
}
จากนั้นเมื่อคุณต้องการเรียกใช้เมธอดเพียงแค่ใส่สิ่งนี้
//calling a toString method is unnessary here, but i use it to have my programs to both rigid and self-explanitory
System.out.println(methodCaller(methodName).toString());
className.getName().toString()
? คุณขาดจุดสะท้อนทั้งหมด