A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 官珺伟 高级黑马   /  2014-4-26 07:34  /  1018 人查看  /  6 人回复  /   2 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.itheima;

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

public class Test2 {

        /**
         * 2、 ArrayList<Integer> list = new ArrayList<Integer>(); 在这个泛型为Integer的ArrayList中存放一个String类型的对象。
         */
        public static void main(String[] args) throws Exception{
                ArrayList<Integer> list=new ArrayList<Integer>();
                Method method=list.getClass().getMethod("add", Object.class);
                method.invoke(list, "a string");
                System.out.println(list);
               
               
        }

}


6 个回复

倒序浏览
用到Method是反射么
回复 使用道具 举报
你现在是黑马会员么?
回复 使用道具 举报
你这是基础测试还是入学测试啊?
回复 使用道具 举报
王松松 发表于 2014-4-26 11:43
你这是基础测试还是入学测试啊?

.入学..................
回复 使用道具 举报
二小傻 发表于 2014-4-26 09:20
用到Method是反射么

反射高新技术。。。
回复 使用道具 举报
还没学到,努力中
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马