• JAVA中toString方法


    因为它是Object里面已经有了的方法,而所有类都是继承Object,所以“所有对象都有这个方法”。

    它通常只是为了方便输出,比如System.out.println(xx),括号里面的“xx”如果不是String类型的话,就自动调用xx的toString()方法

    总而言之,它只是sun公司开发java的时候为了方便所有类的字符串操作而特意加入的一个方法

    回答补充:

    写这个方法的用途就是为了方便操作,所以在文件操作里面可用可不用

    例子1:

    复制代码

    public class Orc

    {

    public static class A

    {

    public String toString()

    {

    return "this is A";

    }

    }

    public static void main(String[] args)

    {

    A obj = new A();

    System.out.println(obj);

    }

    }

    复制代码

    如果某个方法里面有如下句子:

    A obj=new A();

    System.out.println(obj);

    会得到输出:this is A

    例子2:

    复制代码

    public class Orc

    {

    public static class A

    {

    public String getString()

    {

    return "this is A";

    }

    }

    public static void main(String[] args)

    {

    A obj = new A();

    System.out.println(obj);

    System.out.println(obj.getString());

    }

    }

    复制代码

    会得到输出:xxxx@xxxxxxx的类名加地址形式

    System.out.println(obj.getString());

    会得到输出:this is A

    看出区别了吗,toString的好处是在碰到“println”之类的输出方法时会自动调用,不用显式打出来。

    复制代码

     1 public class Zhang
    2
    3 {
    4
    5 public static void main(String[] args)
    6
    7 {
    8
    9 StringBuffer MyStrBuff1 = new StringBuffer();
    10
    11 MyStrBuff1.append("Hello, Guys!");
    12
    13 System.out.println(MyStrBuff1.toString());
    14
    15 MyStrBuff1.insert(6, 30);
    16
    17 System.out.println(MyStrBuff1.toString());
    18
    19 }
    20
    21 }

    复制代码

    值得注意的是, 若希望将StringBuffer在屏幕上显示出来, 则必须首先调用toString方法把它变成字符串常量, 因为PrintStream的方法println()不接受StringBuffer类型的参数.

    复制代码

    1 public class Zhang
    2 {
    3 public static void main(String[] args)
    4 {
    5 String MyStr = new StringBuffer();
    6 MyStr = new StringBuffer().append(MyStr).append(" Guys!").toString();
    7 System.out.println(MyStr);
    8 }
    9 }

    复制代码

    toString()方法在此的作用是将StringBuffer类型转换为String类型.

    复制代码

    1 public class Zhang
    2 {
    3 public static void main(String[] args)
    4 {
    5 String MyStr = new StringBuffer().append("hello").toString();
    6 MyStr = new StringBuffer().append(MyStr).append(" Guys!").toString();
    7 System.out.println(MyStr);
    8 }
    9 }

    复制代码

  • 相关阅读:
    Sitecore 9 介绍
    Sitecore个性化
    Sitecore个性化
    Sitecore A / B测试
    Sitecore性化
    cesium结合geoserver利用WFS服务实现图层编辑(附源码下载)
    leaflet地图全图以及框选截图导出功能(附源码下载)
    openlayers6结合geoserver利用WFS服务实现图层编辑功能(附源码下载)
    arcgis api 4.x for js扩展MapImageLayer支持图片图层加载
    cesium结合geoserver利用WFS服务实现图层删除(附源码下载)
  • 原文地址:https://www.cnblogs.com/hdk1993/p/4523229.html
Copyright © 2020-2023  润新知