Java String(char[] value) Constructor
Syntax
String(char[] value) constructor from String has the following syntax.
public String(char[] value)
Example
In the following code shows how to use String.String(char[] value) constructor.
public class Main {
public static void main(String args[]) {
char charArray[] = { 'j', 'a', 'v', 'a', '2', 's', '.', 'c', 'o','m' };
String s3 = new String(charArray);
//w w w .j a va 2 s . com
System.out.println(s3);
}
}
The code above generates the following result.