1
2
3
4
5
6
7
8
public class ceshi {
public static void main(String[] args){
String[] s = new String[3]//字符串数组
Scanner sc = new Scanner(System.in)接收用户从键盘输入的字符串
String str = sc.next()
s[0]=str//输入的字符串str赋值给字符串数组的第一个
}
}
可以使用split函数将String 字符串转化为数组
split 方法
将一个字符串分割为子字符串,然后将结果作为字符串数组返回。
例子:
String []arr1 = "String".split("")for(int i = 0i<arr1.lengthi++){
System.out.println(arr1[i])
}
结果:
S
t
r
i
n
g
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)