使用此“while(songInfo!= null)”将for循环转换为while循环

时间:2016-10-05 19:17:11

标签: java loops for-loop while-loop

public static void main(){
    String songInfo = MediaFile.readString();
    //System.out.println(MediaFile.readString());

    for (int x=10; x>0; x--){
        System.out.println(MediaFile.readString());
    }

    MediaFile.saveAndClose();
}

我需要使用条件

将上面的for循环转换为while循环
while (songInfo != null)

1 个答案:

答案 0 :(得分:0)

不确定是什么问题,但听起来你正在寻找这个:

while (songInfo != null) {
    System.out.println(songInfo);
    songInfo = MediaFile.readString();
}