Home > Java > JavaBase > body text

How to use tostring method in java

hzc
Release: 2020-06-16 17:16:14
Original
10172 people have browsed it

How to use tostring method in java

In JAVA, all objects have a toString method;

The toString method is not defined when creating a class. When the object is output, the hash value of the object will be output;

It is just a method specially added by Sun Company to facilitate string operations of all classes when developing Java

It is usually just for convenient output:

For example:

public class Test2{
    String name; 
     int age;
     public String toString(){      
      return "我的姓名是:"+name+"\t我的年龄是:"+age;
      }    
public static void main(String[] args){
    Test2 Myclass =new Test2();
        Myclass.name = "小明";
        Myclass.age = 20;
        System.out.println(Myclass); 
     //直接使用对象名时默认调用该对象的toString方法
     System.out.println(Myclass.toString());//手动调用String方法   
}
Copy after login

Running result:

How to use tostring method in java

If the toString method is not defined in the class, when called according to the above case, the hash value of the object will be output, as shown in the following case. :

Run result:

How to use tostring method in java

Recommended tutorial: "java tutorial"

The above is the detailed content of How to use tostring method in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!