Java 类 toString() 方法



描述

Java 类 toString() 方法将对象转换为字符串。字符串表示形式是字符串“class”或“interface”,后面跟着一个空格,然后是类的完全限定名称,格式由getName返回。

声明

以下是java.lang.Class.toString()方法的声明

public String toString()

参数

返回值

此方法返回此类对象的字符串表示形式。

异常

获取类实例的字符串表示形式示例

以下示例显示了 java.lang.Class.toString() 方法的用法。我们创建了一个 ClassDemo 类的实例,然后使用 getClass() 方法检索了对象的类。现在使用 toString(),我们获取字符串表示形式并打印结果。我们还使用 getName() 方法打印了类名。

package com.tutorialspoint;

public class ClassDemo {

   public static void main(String[] args) {

      ClassDemo c = new ClassDemo();
      Class cls = c.getClass();

      // returns the string representation of this class object
      String str = cls.toString();
      System.out.println("Class = " + str);

      // returns the name of the class
      str = cls.getName();
      System.out.println("Class = " + str);
   }
} 

输出

让我们编译并运行以上程序,这将产生以下结果:

Class = class com.tutorialspoint.ClassDemo
Class = com.tutorialspoint.ClassDemo

获取 ArrayList 的字符串表示形式示例

以下示例显示了 java.lang.Class.toString() 方法的用法。我们使用了 ArrayList 的类。现在使用 toString(),我们获取字符串表示形式并打印结果。我们还使用 getName() 方法打印了类名。

package com.tutorialspoint;

import java.util.ArrayList;

public class ClassDemo {

   public static void main(String[] args) {
      Class cls = ArrayList.class;

      // returns the string representation of this class object
      String str = cls.toString();
      System.out.println("Class = " + str);

      // returns the name of the class
      str = cls.getName();
      System.out.println("Class = " + str);
   }
} 

输出

让我们编译并运行以上程序,这将产生以下结果:

Class = class java.util.ArrayList
Class = java.util.ArrayList

获取 Thread 的字符串表示形式示例

以下示例显示了 java.lang.Class.toString() 方法的用法。我们使用了 Thread 的类。现在使用 toString(),我们获取字符串表示形式并打印结果。我们还使用 getName() 方法打印了类名。

package com.tutorialspoint;

public class ClassDemo {

   public static void main(String[] args) {
      Class cls = Thread.class;

      // returns the string representation of this class object
      String str = cls.toString();
      System.out.println("Class = " + str);

      // returns the name of the class
      str = cls.getName();
      System.out.println("Class = " + str);
   }
} 

输出

让我们编译并运行以上程序,这将产生以下结果:

Class = class java.lang.Thread
Class = java.lang.Thread
java_lang_class.htm
广告