ArrayListにStringタイプデータを追加する方法


黒馬入学試験問題:
ArrayList list = new ArrayList();
この汎用IntegerのArrayListにStringタイプのオブジェクトを格納します.
package itheima;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;

/**
 *       Integer ArrayList     String     。
 * @author Administrator
 *
 */
public class AddStringToArrayList {
	//     
	public static void main(String[] args) throws NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
		ArrayList list=new ArrayList();
		Method method = list.getClass().getMethod("add", Object.class);
		method.invoke(list, "i am a String");
		System.out.println(list);
	}
}