0
例如我的方法的名字是如何獲得在全日食方法名插件應用
public static Address convert(final com.test.Address wsAddress)throws Exception
我想整條生產線。
如果我做
IMethod[] methods=type.getMethods();
IMethod method=methods[0];
String mname=method.toString();
mname=mname.substring(0, mname.indexOf(")")+1);
我只得到
Address convert(com.test.Address)
但如果該方法具有公共,靜態,最終如公共靜態final fun()我如何命令他們,當我使用getFlags?並獲得整個方法的名稱? – sakthi
簡單地說:沒有訂購。所以你不能使用'getFlags()'方法檢索任何排序。其他問題:你想達到什麼目的?沒有更多的信息,我無法幫助你。 – Seelenvirtuose
非常感謝您的幫助:) – sakthi