Answers for "why a string belong to a class"

1

string method example in java

public char charAt(int index)
-----------------------------
String x = "airplane";
System.out.println( x.charAt(2) ); // output is 'r'
Posted by: Guest on January-25-2020
0

string method example in java

public String concat(String s)

String x = "book";
System.out.println( x.concat(" author") ); // output is "book author"
Posted by: Guest on January-25-2020

Code answers related to "why a string belong to a class"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language