黑马程序员技术交流社区

标题: 讲的没听懂,大神帮忙解释解释呗 [打印本页]

作者: kunwenli    时间: 2016-5-24 19:35
标题: 讲的没听懂,大神帮忙解释解释呗
  1. public class Test3_String {

  2.         /**
  3.          * @param args
  4.          */
  5.         public static void main(String[] args) {
  6.                 //大串       
  7.                 String max = "abcacdacbacd";
  8.                 //小串
  9.                 String mix = "a";
  10.                 //定义计数器
  11.                 int count = 0;
  12.                 //定义索引
  13.                 int index = 0;
  14.                 while ((index = max.indexOf(mix))!=-1) {
  15.                         count++;
  16.                         max = max.substring(index + mix.length());
  17.                        
  18.                 }
  19.                 System.out.println(count);
  20.         }

  21. }
复制代码







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