[Java] 纯文本查看 复制代码 public class Demo05Split {
public static void main(String[] args) {
String str1 = "boo:and:foo";
String[] array = str1.split("o");
System.out.println("数组长度:" + array.length);
for(String str : array) {
System.out.println("“" + str + "”" );
}
}
}
输出结果为:
数组长度:3
“b”
“”
“:and:f”
问题:返回的数组第二个元素为什么会是 “”空值呢? |