假设我有一个文件,它的名称是 file.txt 它由 java 中反射方法的脚本组成。假设其中一些是:
new <id> <class> <arg0> <arg1> … creates a new instance of <class> by using
a constructor that takes the given argument types and stores the result in <id>.
call <id> <method> <arg0> <arg1> … invokes the specified <method> that
takes the given arguments on the instance specified by <id> and prints the answer.
print <id> prints detailed information about the instance specified by <id>. See
below for Object details.
文件中的脚本将在程序中作为字符串提取。我将如何将其转换为我上面指定的参数以进行反射。我对这个视而不见!一些代码帮助的一些描述将不胜感激,因为我是 java 新手。