字符串与字符数组的多种转换方式。
Posted wangffeng293
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串与字符数组的多种转换方式。相关的知识,希望对你有一定的参考价值。
public class StringAPIDemo1 {
public static void main(String[] args) {
String str = "HELLO";
char c[] = str.toCharArray(); // 将字符串变为字符数组
for (int i = 0; i < c.length; i++) {
System.out.print(c[i] + " ");
}
System.out.println(); //换行
String str2 = new String(c);// 将整个字符数组转换为字符串
String str3 = new String(c, 0, 3);// 将部分字符数组转换为字符串
System.out.println(str2);
System.out.println(str3);
}
}
以上是关于字符串与字符数组的多种转换方式。的主要内容,如果未能解决你的问题,请参考以下文章