是String数组中查找它的元素包不包含某个字符串?这个就用遍历就好了。
String[] strs = new String[]{"hello","tom","world"};//初始化一个数组
//如果想查找String a ="hello";是不是在这个数组里可以用下面方法
String a ="hello"
for(int i = 0;i<strs.length;i++){//利用了字符串自带的length方法,获取数组长度
if(strs[i].equals(a)){//用来判断字符串是否相等
System.out.println("该数组中有这个字符串");
}
}