Java Data Type Tutorial - 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);
    
    System.out.println(s3);
  }
}

The code above generates the following result.