ใน Scala คุณมักใช้ตัววนซ้ำเพื่อทำfor
วนซ้ำตามลำดับที่เพิ่มขึ้นเช่น:
for(i <- 1 to 10){ code }
คุณจะทำอย่างไรให้มันเปลี่ยนจาก 10 เป็น 1 ฉันเดาว่า10 to 1
ให้ตัววนซ้ำว่าง (เหมือนคณิตศาสตร์พิสัยปกติ)?
ฉันสร้างสคริปต์ Scala ซึ่งแก้ไขได้โดยการเรียก reverse บน iterator แต่มันไม่ดีในความคิดของฉันวิธีต่อไปนี้จะไปหรือไม่?
def nBeers(n:Int) = n match {
case 0 => ("No more bottles of beer on the wall, no more bottles of beer." +
"\nGo to the store and buy some more, " +
"99 bottles of beer on the wall.\n")
case _ => (n + " bottles of beer on the wall, " + n +
" bottles of beer.\n" +
"Take one down and pass it around, " +
(if((n-1)==0)
"no more"
else
(n-1)) +
" bottles of beer on the wall.\n")
}
for(b <- (0 to 99).reverse)
println(nBeers(b))
until
ด้วยว่าคุณสามารถใช้to
แทนจุดปลายด้านขวามือออกจากช่วงได้ จุดสิ้นสุดทางซ้ายมือจะรวมอยู่ด้วยเสมอ