讀我寫的,增加了1到每次看到一個新字時調用total
的int
的方法:要從一個txt文件
public int GetTotal() throws FileNotFoundException{
int total = 0;
Scanner s = new Scanner(new BufferedReader(new FileReader("Particles/Names.txt")));
while(s.hasNext()){
if(s.hasNext()){
total++;
}
}
return total;
}
這是正確的方式來寫呢?
它會編譯嗎?你是如何試圖測試它的? – Davidann
更好的方式來做到這一點。 http://stackoverflow.com/a/4094186/628943 –
問題是,這將有一個無限循環。考慮看客戶是否在等待服務的隱喻,但你永遠不會真正服務他們。 – Moshe