Java toString() 方法

toString() 方法返回此对象本身(它已经是一个字符串)。

语法

  1. public String toString()

参数

返回值

字符串本身。

实例

  1. public class Test {
  2. public static void main(String args[]) {
  3. String Str = new String("WWW.BAIDU.COM");
  4. System.out.print("返回值 :" );
  5. System.out.println( Str.toString() );
  6. }
  7. }

以上程序执行结果为:

  1. 返回值 :WWW.BAIDU.COM