亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class ReflectionDemo1 { public static void main(String[] args) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { // 實例化字符串對象 String name = new String("Colorful"); // 獲取 method 對象 Method method = String.class.getMethod("replace", CharSequence.class, CharSequence.class); // 調用 invoke() 執行方法 String result = (String) method.invoke(name, "ful", ""); System.out.println(result); } }
運行結果