扫码一下
查看教程更方便
toString() 方法返回其本身对应的一个字符串。
public String toString()
无
返回其本身对应的一个字符串。
public class Main { public static void main(String args[]) { String Str = new String("Welcome to jiyik.com"); System.out.print("Return Value :"); System.out.println(Str.toString()); } }
上面示例编译运行结果如下
Return Value :Welcome to jiyik.com