单选题 下列程序的功能是统计字符串中"array"的个数,在程序的空白处应填入的正确选项是: public class FindKeyWords{ public static void main(sring[] args){ String text= " An array is a data structur that stores a collection of" + "values of the same type . You access each individual value" + "through an integer index . For example,if a is an array" + "of inergers, then a[i] is the ith integer in the array."; int arrayCount =0; int idex = -1; String arrarStr ="array"; index = text.indexof(arrayStr); while(index ______ 0) { ++arrayCount; index += arrayStr.length(); index = text.indexof(arrayStr,index); } System.out.println("the text contains" + arrayCount + "arrays"); } }
相关试题
单选题 下列不属于Swing的构件是:
单选题 AWT中用来表示颜色的类是:
单选题 阅读下列程序 public class VariableUse{ public static void main (String[] args) { int a; if (a==8) { int b=9; System.out.println("a = "+a); System.out.println("b = "+b); } System.out.println("a = "+a); System.out.println("b = "+b); } } 该程序在编译时的结果是:
单选题 在方法内部使用,代表对当前对象自身引用的关键字是:
单选题 Java虚拟机(JVM)运行Java代码时,不会进行的操作是:
单选题 对鼠标点击按钮操作进行事件处理的接口是:
单选题 Java程序的并发机制是:
单选题 下列运算符中,优先级最高的是: