web-dev-qa-db-ja.com

Scala下向きまたはループの減少?

Scalaでは、イテレータを使用してforループを次のような昇順で実行することがよくあります。

for(i <- 1 to 10){ code }

10から1になるようにどうしますか?私は推測する 10 to 1は空のイテレータを与えます(通常の範囲数学のように)?

Scalaイテレータでreverseを呼び出すことでそれを解決するスクリプトを作成しましたが、私の意見ではニースではありません、次の方法はありますか?

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))
105
Felix
scala> 10 to 1 by -1
res1: scala.collection.immutable.Range = Range(10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
218
Randall Schulz

@Randallからの答えは金のように良いですが、完成のために、いくつかのバリエーションを追加したいと思いました。

scala> for (i <- (1 to 10).reverse) {code} //Will count in reverse.

scala> for (i <- 10 to(1,-1)) {code} //Same as with "by", just uglier.
35
Chirlo

Scalaには、ループを下向きに処理する多くの方法が用意されています。

最初の解決策:「to」および「by」を使用

//It will print 10 to 0. Here by -1 means it will decremented by -1.     
for(i <- 10 to 0 by -1){
    println(i)
}

2番目のソリューション:「to」および「reverse」を使用

for(i <- (0 to 10).reverse){
    println(i)
}

3番目のソリューション:「to」のみを使用

//Here (0,-1) means the loop will execute till value 0 and decremented by -1.
for(i <- 10 to (0,-1)){
    println(i)
}
10
Dipak Shaw

Pascalでプログラミングしたので、この定義を使用するのがいいと思います。

implicit class RichInt(val value: Int) extends AnyVal {
  def downto (n: Int) = value to n by -1
  def downtil (n: Int) = value until n by -1
}

このように使用しました:

for (i <- 10 downto 0) println(i)
6
LP_

Rangeクラスを使用できます:

val r1 = new Range(10, 0, -1)
for {
  i <- r1
} println(i)
1
KaaPex

次を使用できます:for (i <- 0 to 10 reverse) println(i)

0
Jonny