为啥这样写还是输出的是地址?
package com.imoic;
public class Initail {
/**
*
*/
public static void main(String[] args) {
Dog dog=new Dog();
System.out.println(dog.tostring());
}
为什么要在dog那个方法里面去写tostring,这样写不是一样可以吗?
}
package com.imoic;
public class Initail {
/**
*
*/
public static void main(String[] args) {
Dog dog=new Dog();
System.out.println(dog.tostring());
}
为什么要在dog那个方法里面去写tostring,这样写不是一样可以吗?
}
2016-11-08
举报