Skip to content

Instantly share code, notes, and snippets.

@masterdungeon
Created September 14, 2016 11:13
Show Gist options
  • Save masterdungeon/5218e7f97d28883470be6561cd30efa5 to your computer and use it in GitHub Desktop.
Save masterdungeon/5218e7f97d28883470be6561cd30efa5 to your computer and use it in GitHub Desktop.
String method
class string
{
public static void main(String args[])
{
char arr[]={'r','o','h','i','t'};
String s=new String(arr);
String s1=new String(arr);
System.out.println(s);
System.out.println(s1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment