我從來沒有理解爲什麼使用做,而循環是必要的。我明白他們在做什麼,哪個是執行while循環包含的代碼,而不檢查條件是否爲真。爲什麼使用「do while」循環?
但不是下面的代碼:
do{
document.write("ok");
}
while(x == "10");
確切一樣:
document.write("ok");
while(x == "10"){
document.write("ok");
}
也許我是非常愚蠢和缺少明顯的東西出來,但我沒有看到使用的好處,而我的上面的例子則使用。
Dupe of http://stackoverflow.com/questions/994905/is-there-ever-a-need-for-a-do-while-loop – sharptooth 2010-06-09 06:22:10