Scalaが下向きまたはforループが減少しますか?


115

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

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

それを10から1にするにはどうしますか?10 to 1(通常の範囲の数学のように)空のイテレータを与えると思いますか?

イテレータでreverseを呼び出すことによってそれを解決するScalaスクリプトを作成しましたが、私の意見では良くありません。

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))

回答:


229
scala> 10 to 1 by -1
res1: scala.collection.immutable.Range = Range(10, 9, 8, 7, 6, 5, 4, 3, 2, 1)

2
@Felix:どういたしまして。範囲の右側のエンドポイントを除外するuntil代わりに使用できることも指摘しておく必要がありtoます。左側のエンドポイントは常に含まれます。
Randall Schulz

untilについてはすでに知っていました。untilもIntegersの関数ですが、「by」は「to」関数と「until」関数から返されるものはすべて、範囲/反復子の関数である必要があります。とにかくありがとう:)
フェリックス

5
ランドールの答えが一番ですが、Range.inclusive(10, 1, -1)言及するに値すると思います。
ジョンサリバン2013

37

@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.

9
最初の1つは+1ですが、2つ目は悪です- byどのような状況でもIMOを使用するべきではなく、読みにくくなります
om-nom-nom

4
2つ目は悪ですが、何が利用できるかを直観的に構築します
Zaheer 2014

10

Scalaは下向きのループで作業する多くの方法を提供します。

第1の解決策: "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)
}

6

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)

答えてくれてありがとう。このソリューションを使用できません。これが私のスタックトレースです:Error:(57, 17) value class may not be a member of another class implicit class RichInt(val value: Int) extends AnyVal { ^
robert

エラーメッセージ(スタックトレースではない)が示すように、値クラスを別のクラス内に定義することはできません。外部で定義するか、オブジェクト内で定義するか、extends AnyValパーツを削除します(一部のオーバーヘッドを削除するためだけに機能します)。
LP_16年

1

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

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


0
for (i <- 10 to (0,-1))

ループは、値== 0まで実行され、そのたびに-1ずつ減少します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.