程序的执行没有问题,确实是三个数组已满。
你的想法应该是一旦在数组中找到空元素就加入新元素,应该在if判断当前元素为空时加入元素。可以在最后输出数组查看。index可以作为判断标准,在循环结束时index还是-1,说明数组是满的。
public class SuppleMent {public static void main(String[]args){
int index=-1// 假设的数组下标索引
String[] phones={"小米","中兴","华为",null}
for(int i=0i<phones.lengthi++){
if(phones[i]==null){
index=i
phones[i]="联想"
}
}
if(index==-1)
System.out.println("数组是满的。")
for(int j = 0j<phones.lengthj++){
System.out.println(phones[j])
}
}
}
设置标志位boolean flag=false //定义标志位
当一个事件触发后,修改标志位:flag=true
第二个事件前面加个条件判断if(flag=true){
执行第二个事件;
flag=false恢复标志位,以便下次使用
}
把文件按行读入一个List,然后遍历这个List,改掉要改的行,重新把list写入文件.//readString2List
public static List getAllLineFromFile(File file) {
try {
FileReader fr = new FileReader(file.getPath())
BufferedReader br = new BufferedReader(fr)
List list = new ArrayList()
String ss = ""
while ((ss = br.readLine()) != null)
list.add(ss)
fr.close()
return list
} catch (Exception e) {
e.printStackTrace()
return null
}
}
//找到要修改的行,改掉要改的东西
//把list重新写入文件
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)