Saturday 15 June 2013

program for java string function - tostring()

import java.io.*;

public class toString
{
   public static void main(String args[])
   {
      String Str = new String("Welcome to Tutorialspoint.com");

      System.out.print("Return Value :");
      System.out.println(Str.toString());
   }
}

No comments: