下列程序的功能是统计字符串中“array”的个数,在程序的空白处应填入的正确选项是( )。 publicclassFindKeyWords{ publicstaticvoidmain(sring[]args){ stingtext=

admin2010-04-08  28

问题 下列程序的功能是统计字符串中“array”的个数,在程序的空白处应填入的正确选项是(    )。    publicclassFindKeyWords{    publicstaticvoidmain(sring[]args){    stingtext=    “Anarrayisadatastructurthatstoresacollectionof”    +“valuesofthesametype.YOUaccesseachindividualvalue’’    +“throughanintegerindex.Forexample,ifaiSanarray”    +“of inergers,thenaiSthe ith integer in thearray.”;    In tarrayCount=0;    Intidex=-1;    Sting arrarStr=“array”;    IndeX=text.indexof(arrayStr);    While(index______0){    ++arrayCount;    Index+=arrayStr.length();    IndeX=text.indexof(arrayStr,indeX);    }    SyStem.out.phntln    (“thetextcontains”+arrayCount+“arrays”);    }    }

选项 A、<
B、=
C、<=
D、>=

答案D

解析 在字符串中查询指定的字符或子串,可用indexof()方法,如查询成功,返回所查字符的位置。如不成功,返回-1,从下面程序可以看出,While条件应为查询成功。
转载请注明原文地址:https://kaotiyun.com/show/b99p777K
0

最新回复(0)