本帖最后由 杨兴庭 于 2013-7-28 23:21 编辑
import java.lang.reflect.Field;class Preson
{
String s1="abc";
String s2="acb";
String s3="bda";
public String toString()
{
return s1+" "+s2+" "+s3;
}
}
public class Fanshe
{
public static void show(Object obj)throws Exception
{
Field[] f=obj.getClass().getFields();
for(Field f1:f)
{
if(f1.getType()==String.class)
{
String oldV =(String)f1.get(obj);
String newV=oldV.replace('w', 'a');
f1.set(obj,newV);
}
}
}
public static void main(String...args)throws Exception
{
Preson p=new Preson();
show(p);
System.out.println(p);
}
}
------------------------------------------------------------------------
反不了啊 反不了 . 愁人啊 愁人
给7L的截图.. 第一张是new对象. 第二张是syso
|
|