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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 严学韦 于 2012-9-11 10:32 编辑

下面这段关于反射的代码,我已经写成跟张老师的一模一样的了,可是在台式机上运行结果正常,在笔记本上就不行了

package packge1;

public class ReflectPoint {
        public int x;
        public int y;
        public String str1 = "ball";
        public String str2 = "base";
        public String str3 = "bpple";
        
        public ReflectPoint(int x, int y) {
                super();
                this.x = x;
                this.y = y;
        }
        
        public String toString(){
                return str1 + ":"+str2 +":"+ str3;
        }

}
------------------------------------------------------------
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;

public class ReflectTest {
        public static void main(String[] args) throws Exception{
                ReflectPoint pt1 = new ReflectPoint(3,5);
                changeStringValue(pt1);
                System.out.println(pt1);
}
        private static void changeStringValue(Object obj) throws Exception{
                Field[] fields = obj.getClass().getFields();
                for(Field field : fields){
                        if(field.getType()==String.class){
                                String oldValue = (String)field.get(obj);
                                String newValue = oldValue.replace('b','a');
                                field.set(obj, newValue);
                        }
                                
                }
        }
}
在台式机上的时候运行结果:aall:aase:apple

在笔记本上运行结果不正确:bbll:base:bpple

折腾俺半天,就是不行,也不报异常,这是为什么呀


4 个回复

倒序浏览
有没有哪位遇到过同样的问题?
回复 使用道具 举报
本帖最后由 武庆东 于 2012-9-7 09:50 编辑

在我笔记本上正常运行,自己好好 检查一下吧!
回复 使用道具 举报
我想你应该是这里写错了。一个是找a替换成b,一个是找b替换成a
笔记本里写成了 String newValue = oldValue.replace('a','b');  //查找a替换成b
台式机写成了 String newValue = oldValue.replace('b','a');  //查找b替换成a
回复 使用道具 举报
如果你代码没有错误的话,那么就和你电脑的运行环境有关了
2台电脑上的jdk,环境配置,操作系统等
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马