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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 不怕黑人 中级黑马   /  2015-7-16 23:51  /  221 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class TestDemo {

        public static void main(String[] args)throws Exception {
                 
                //构造方法 constructor
                String str = new String(new StringBuilder("abc"));
                Constructor constructor = str.getClass().getConstructor(StringBuilder.class);
                String str1 = (String)constructor.newInstance(new StringBuilder("abd"));
                System.out.println(str+"..."+str1);
               
                //Field类练习
                TestDemo1 td = new TestDemo1(3,5);
               
                Field fx = td.getClass().getField("x");
               
                System.out.println(fx.get(td));
                Field fy = td.getClass().getDeclaredField("y");
                fy.setAccessible(true);
                System.out.println(fy.get(td));
               
                Field[] fields = td.getClass().getFields();
               
                for (Field field : fields){
                        if (field.getType() == String.class){
                               
                                String oldValue = (String)field.get(td);
                                String newValue = oldValue.replace('b', 'a');
                                field.set(td,newValue);
                        }
                }
                System.out.println(td);
               
                //Method类练习1:
                Method charAtMethod=String.class.getMethod("charAt", int.class);
                System.out.println(charAtMethod.invoke(str, 2));
                //练习2:
                String classStartingName = args[0];
               
                Method mainMethod = Class.forName(classStartingName).getMethod("main", String[].class);
               
                mainMethod.invoke(null, (Object)new String[]{"111","222","333"});  
        }

}
class TestDemo1{
       
        public int x ;
        private int y;
        public String str1 = "basketball";
        public String str2 = "babay";
        public String str3 = "but";
        public TestDemo1(int x, int y) {
                super();
                this.x = x;
                this.y = y;
        }
        public String toString(){
                return str1+":"+str2+":"+str3;
        }
}
class MethodTestDemo1{
       
        public static void main(String[] args) {

                for (String str : args){
                       
                        System.out.println(str);
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马