标签: java casting
我有一个字符串和一个带有一组函数的类。
例如,字符串为
String tr = "ctx.mkLt(ctx.mkIntConst(\"x\"),ctx.mkInt(100))";
类为Context ctx = new Context();,方法为ctx.mkLt(arg 0, arg 1), ctx.mkIntConst(arg 0, arg 1)等。
Context ctx = new Context();
ctx.mkLt(arg 0, arg 1), ctx.mkIntConst(arg 0, arg 1)
我无法将字符串转换为 ctx 类的可调用方法。
是否可以像上述情况那样将字符串转换为类的可调用方法?