Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the toSpring () method of the Object class in java

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

这篇文章主要讲解了"java中的Object类的toSpring()方法怎么用",文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习"java中的Object类的toSpring()方法怎么用"吧!

Object是类层次结构的根,每个类都可以将Object作为超类。所有类都直接或者间接的继承自该类

构造方法:public Object()

回想面向对象中,为什么说子类的构造方法默认访问的是父类的无参构造方法?

因为它们的顶级父类只有无参构造方法

package com.itheima_56;public class Student extends Object{private String name;private int age;public Student(){}public Student(String name, int age) {this.name = name;this.age = age;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}//重写toString方法@Overridepublic String toString() {return "Student{" +"name='" + name + '\'' +", age=" + age +'}';}}package com.itheima_56;/*Object是类层次结构的根,每个类都可以将Object作为超类。所有类都直接或者间接的继承自该类看方法的源码:选中方法,按下Ctrl+B建议所有子类重写此方法如何重写呢?自动生成即可*/public class ObjectDemo {public static void main(String[] args) {Student s = new Student();s.setAge(18);s.setName("王昱翔");System.out.println(s);//默认com.itheima_56.Student@5cad8086System.out.println(s.toString());/*public void println(Object x) { //x = sString s = String.valueOf(x);synchronized (this) {print(s);newLine();}}public static String valueOf(Object obj) { //obj = x;return (obj == null) ? "null" : obj.toString();}public String toString() {return getClass().getName() + "@" + Integer.toHexString(hashCode());}*/}}感谢各位的阅读,以上就是"java中的Object类的toSpring()方法怎么用"的内容了,经过本文的学习后,相信大家对java中的Object类的toSpring()方法怎么用这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是,小编将为大家推送更多相关知识点的文章,欢迎关注!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report