其他分享
首页 > 其他分享> > tostring

tostring

作者:互联网

输出语句直接打印对象, 默认调用了对象的 toString()方法.
        System.out.println(s);
        System.out.println(s.toString());//这里tostring 可省略

输出 对象s的地址值

toString()方法.是从object类继承的方法

创建没有继承的类时默认省略了extends object

 

标签:object,System,toString,println,tostring,out
来源: https://www.cnblogs.com/q1231/p/16603356.html