import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
class ReflectPoint {
private int x;
public int y;
public String str1 = "ball";
public String str2 = "baskball";
public String str3 = "itcast";
public ReflectPoint(int x, int y) {
super();
this.x = x;
this.y = y;
}
难道就是因为重写了toString方法吗。我试验了一下,吧重写的toString方法换成return x + ":" + y+ ":" + str3;,就会打印x,y,str3的值。这是为什么呢。
这里就是toString()的具体应用,你想打印那些内容就修改return即可。这个方法是可以自己根据实际需求自定义的 作者: 王明明 时间: 2012-7-3 20:58
String newValue = oldValue.replace('b', 'a');
这里把Str1 2 3 b字符替换成了a作者: 周朋飞 时间: 2012-7-3 21:06
这问题很简单啊 首先你重写了toString方法 要求输出str1 str2 str 3的值 ,这三个值是pt1 对象的属性啊 也就是field啊 那你在change方法当中把一个对象传进去,那对象是不是拥有这些属性值呢 是吧 ,然后你对属性值进行遍历 是String类型的话就将字符改变一下 ,这没什么问题啊 ,并且你声明的三个str都是public类型的 所以你同过getField方法肯定是能获得这三个的 ,然后改变之后你又将其的值给set了 所以结果肯定就是你输出的啊 对象一创建就会初始化,如果你没有显示初始化,引用类型的会初始化为null基本类型为0,而你这里已经付了初值,所以就算你构造方法中没有这三个参数的重载,也已经有值了啊 所以还是把构造函数那一块弄明白吧作者: 李靖 时间: 2012-7-3 22:16
Field[] fields = obj.getClass().getFields();
这句代码的意思是获得obj对象的成员变量的值。这就是问题的关键,toString只是对父类方法的重载而已。
Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.
The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of: