A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  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++)+"次空格");
复制代码


2 个回复

倒序浏览
我觉得你这个代码的count会输出4
回复 使用道具 举报
大头爱傻瓜 发表于 2015-8-31 22:43
我觉得你这个代码的count会输出4

。。。后面写错了,不过不影响结果,因为是先输出在+1的,不好意思,你说错了哈
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马