我是java新手,我有while条件,它工作得很好,但我需要使用for循环:this while条件循环
String command = "";
while ((command = br.readLine())!=null && !command.isEmpty()) {
int b=0;
thisObj.perintah(b,command);
}
我试过用 for 写,我认为类似这样,但它不起作用
for (int b=0;b<command;b++)
{
String command = br.readLine();
thisObj.perintah(b,command);
}
有谁知道我错过了什么