Directly output the object name

2018-10-03 17:57:55来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

package basic.java;

public class Case {
    public static void main(String[] args) {
        Student s = new Student();
        System.out.println(s);
    }
}

basic.java.Student@19bb25a

输出的结果是包名.

package basic.java;

public class Case {
    public static void main(String[] args) {
        Student s = new Student();
        System.out.println(s);
        System.out.println(s.name);
        System.out.println(s.age);
    }
}

basic.java.Student@1e58cb8
null
0

String是一个引用类型的类,所以默认输出的是null。

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Example of assigning attributes directly to an object name

下一篇:this keyword details