在Java IM新手,我有while條件和它的工作不錯,但我需要利用與循環:此而條件循環變化循環的條件,同時與有關Java
String command = "";
while ((command = br.readLine())!=null && !command.isEmpty()) {
int b=0;
thisObj.perintah(b,command);
}
我有嘗試寫對,我覺得像這樣的類似,但它不能正常工作
for (int b=0;b<command;b++)
{
String command = br.readLine();
thisObj.perintah(b,command);
}
有沒有人知道我失蹤
你認爲一個整數和字符串之間的不等式比較應該做什麼? – Phoshi
您正在將String命令與int b進行比較。這不是一個好主意。 – luanjot
您的第一個片段中的「b」有什麼意義? – arshajii