0
假設我有一個文件,它的名稱是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。