Created
September 14, 2016 11:13
-
-
Save masterdungeon/5218e7f97d28883470be6561cd30efa5 to your computer and use it in GitHub Desktop.
String method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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