黑马程序员技术交流社区

标题: 被split切割的字符串到底打印几个空格? [打印本页]

作者: 纸心丶醉月    时间: 2015-8-31 22:29
标题: 被split切割的字符串到底打印几个空格?
  1. public class Practice {
  2.          public static void main(String[] args) {
  3.                  ArrayList<String[]> arr = new ArrayList<String[]>();
  4.                  String s = "boo:and:foo";
  5.                 int count = 0;
  6.                 String[] str = s.split("o");
  7.                 for (String string : str) {
  8.                       System.out.println(string);
  9.                       if (string.equals("")) {
  10.                      count++;
  11.               }
  12.          }
  13.           System.out.println("打印"+(count++)+"次空格");
复制代码



作者: 大头爱傻瓜    时间: 2015-8-31 22:43
我觉得你这个代码的count会输出4
作者: 纸心丶醉月    时间: 2015-8-31 22:45
大头爱傻瓜 发表于 2015-8-31 22:43
我觉得你这个代码的count会输出4

。。。后面写错了,不过不影响结果,因为是先输出在+1的,不好意思,你说错了哈





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2