Java toCharArray() 方法

toCharArray() 方法将字符串转换为字符数组。

语法

  1. public char[] toCharArray()

参数

返回值

字符数组。

实例

  1. public class Test {
  2. public static void main(String args[]) {
  3. String Str = new String("www.baidu.com");
  4. System.out.print("返回值 :" );
  5. System.out.println( Str.toCharArray() );
  6. }
  7. }

以上程序执行结果为:

  1. 返回值 :www.baidu.com