//这个while里面的条件判断语句不太理解 不知道为什么会结束,有大佬回答一下么int count = 1; boolean isOK = false; do{ System.out.println("你现在练习了" + count +"次"); if(count >= 3) { isOK = true; } count ++; }while(!isOK); System.out.println("你学会了");