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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

这是毕老师课堂上的一个例子,为啥定义了方法public  String toString()后,在主函数的打印语句System.out.println(stu),直接用对象就能输出呢?不是应该对象调用函数吗?
但确实System.out.println(stu)和System.out.println(stu.toString())的结果是一样。

class  Student
{
        private String name;
        private int age;
       
        Student(String name,int age)
        {
                this.name=name;
                this.age=age;
        }
       
        public  String toString()
        {
                return name+","+age;
        }
       
}
class Demo
{
        public static void main(String[] args)
        {
                Student stu=new Student("lisi",39);
                //System.out.println(stu.toString());
                System.out.println(stu);

        }
}

10 个回复

倒序浏览
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
冯建鹏 黑马帝 2012-3-23 17:07:16
9#
此帖仅作者可见
使用道具 举报
此帖仅作者可见
使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马