4

我喜欢可以使用布尔运算符编写的简洁代码,而不是像 Lisp、Python 或 JavaScript 这样的(通常是动态的)语言中的条件,就像典型的那样:

x = someString or "default string"

对比

if someString:
    x = someString
else:
    x = "default string"

在 Scala 中,我曾想过:

object Helpers {
  case class NonBooleanLogic[A](x: A) {
    // I could overload the default && and ||
    // but I think new operators are less 'surprise prone'
    def |||(y: => A)(implicit booleanConversion: A => Boolean) = if (x) x else y
    def &&&(y: => A)(implicit booleanConversion: A => Boolean) = if (!x) x else y
  }

  implicit def num2bool(n : Int) = n != 0

  implicit def seq2bool(s : Seq[Any]) = !s.isEmpty

  implicit def any2bool(x : Any) = x != null

  implicit def asNonBoolean[T](x: T) = NonBooleanLogic(x)
}

object SandBox {
  // some tests cases...

  1 ||| 2                                         //> res2: Int = 1

  val x : String = null                           //> x  : String = null
  x ||| "hello"                                   //> res3: String = hello

  //works promoting 2 to Float
  1.0 &&& 2                                       //> res4: Double = 2.0

  //this doesn't work :(
  1 &&& 2.0
}

但出现了两个问题:

  1. 如何使其适用于具有共同祖先的类型而不恢复为Any类型?
  2. 这太酷了,以前肯定有人做过,可能是在一个文档更好、经过测试和综合的库中。在哪里可以找到它?
4

3 回答 3

3

我会坚持使用 Option[T]... 这对 Scala 来说更惯用。我也经常在验证中使用它,例如:在 Web 表单中,有时不应将空字符串视为有效的用户输入。

例如,如果您认为 null String / String with zero length( "") 为 false,任何 null 引用也是 false,并且任何数字零为 false,您可以编写以下隐式 defs。

object MyOptionConverter
{
    implicit def toOption(any: AnyRef) = Option(any)
    implicit def toOption(str: String) = {
        Option(str).filter(_.length > 0)
    }

    implicit def toOption[T](value: T)(implicit num: Numeric[T]): Option[T] = {
        Option(value).filter(_ != 0)
    }
}

import MyOptionConverter._

println(1 getOrElse 10)   // 1
println(5.5 getOrElse 20) // 5.5
println(0 getOrElse 30)  // 30
println(0.0 getOrElse 40) // 40
println((null: String) getOrElse "Hello")  // Hello
println((null: AnyRef) getOrElse "No object") // No object
println("World" getOrElse "Hello")

如果您确实需要定义自己的运算符,请将其转换为包含 Option[T] 的类,并向其添加运算符。

object MyOptionConverter
{
    class MyBooleanLogic[T](x: Option[T], origin: T)
    {
        def |||(defaultValue: T) = x.getOrElse(defaultValue)
        def &&&(defaultValue: T) = x.isDefined match {
            case true  => defaultValue
            case false => origin
        }
    }

    implicit def toOption(any: AnyRef) = {
        new MyBooleanLogic(Option(any), any)
    }
    implicit def toOption(str: String) = {
        new MyBooleanLogic(Option(str).filter(_.length > 0), str)
    }

    implicit def toOption[T](value: T)(implicit num: Numeric[T])= {
        new MyBooleanLogic(Option(value).filter(_ != 0), value)
    }
}

import MyOptionConverter._

println(1 ||| 10)   // 1
println(5.5 ||| 20) // 5.5
println(0 ||| 30)  // 30
println(0.0 ||| 40) // 40
println((null: String) ||| "Hello")  // Hello
println((null: AnyRef) ||| "No object") // No object
println("World" ||| "Hello")


println(1 &&& 10)   // 10
println(5.5 &&& 20) // 20
println(0 &&& 30)  // 0
println(0.0 &&& 40) // 0.0
println((null: String) &&& "Hello")  // null
println((null: AnyRef) &&& "No object") // null
println("World" &&& "Hello") // Hello
于 2013-02-12T00:31:05.180 回答
2

听起来你正试图想出像 Monad 这样的东西。您想要做的已经内置在语言中,并且在惯用的 scala 中很常见。我不是 Monad 的专家,但他们说 Option 是 Monad 的一种。

您特别要求能够编写:

val x = someString or "default string"

是什么让 someString 评估为假?在大多数语言中,您将测试 if( someString != null ),这就是您在示例中所做的。惯用的 scala 避免使用 null,而是使用 None。

所以,在 scala 语法中,你会有

val someString:Option[String] = getAString()

或者

val someString:Option[String] = Some("whatever")

或者

val someString:Option[String] = None

然后你会有:

val x = someString getOrElse "default string"

这几乎正​​是您所要求的。

如果您想自己实现类似的东西,请查看 Option 中 getOrElse 的接口(类似的版本存在于 Map 和标准库中的其他地方):

final def getOrElse[B >: A](default: ⇒ B): B

在此示例中,Option someString 具有由 A 表示的类型(即 String)。B 必须是 A 或 A 的超类型。返回类型将为 B(可能是 A)。例如:

val x:Option[Int]=1
x getOrElse 1.0 // this will be an AnyVal, not Any.

AnyVal 是 Int 和 Double 最具体的共同祖先。请注意,这里是 AnyVal,而不是 Any。

如果你希望它是 Double 而不是 AnyVal,你需要 x 是一个 Option[Double] (或者你需要另一个隐式)。有一个从 Int 到 Double 的内置隐式转换,但不是从 Option[Int] 到 Option[Double]。隐式转换是您的 2 被提升为 Float 的原因,而不是因为您的布尔逻辑。

我不认为您的操作符和隐含方法是此类问题的最佳解决方案。有很多方法可以使用 Options、filter、exists、map、flatMap 等编写简洁优雅的 scala 代码,它们可以处理您想要执行的各种操作。

您可能会发现这很有帮助:

http://www.codecommit.com/blog/ruby/monads-are-not-metaphors

于 2013-02-12T04:17:06.030 回答
1

我只为该版本创建了一个|||版本。是为了展示概念。代码可能会改进,我有点匆忙。

// Create a type that does the conversion, C is the resulting type
trait Converter[A, B, C] {
  def convert(a: A, b: => B)(implicit bool: BooleanConverter[A]): C
}

trait LowerPriorityConverter {
  // We can convert any type as long as we know how to convert A to a Boolean
  // The resulting type should be a supertype of both A and B
  implicit def anyConverter[A <: C, B <: C, C] = new Converter[A, B, C] {
    def convert(a: A, b: => B)(implicit bool: BooleanConverter[A]) = if (a) a else b
  }

  // We can go more specific if we can find a view from B to A
  implicit def aViewConverter[B <% A, A] = anyConverter[A, A, A]
}

object Converter extends LowerPriorityConverter {

  // For Doubles, Floats and Ints we have a specialized conversion as long as the
  // second type is a Numeric

  implicit def doubleConverter[A <: Double: Numeric, B: Numeric] = 
    new Converter[A, B, Double] {
      def convert(a: A, b: => B)(implicit bool: BooleanConverter[A]) =
        if (a) a else implicitly[Numeric[B]].toDouble(b)
    }
  implicit def floatConverter[A <: Float: Numeric, B: Numeric] = 
    new Converter[A, B, Float] {
      def convert(a: A, b: => B)(implicit bool: BooleanConverter[A]) = 
        if (a) a else implicitly[Numeric[B]].toFloat(b)
    }
  implicit def intConverter[A <: Int: Numeric, B: Numeric] = 
    new Converter[A, B, Int] {
      def convert(a: A, b: => B)(implicit bool: BooleanConverter[A]) = 
        if (a) a else implicitly[Numeric[B]].toInt(b)
    }
}

// We have created a typeclass for the boolean converters as well, 
// this allows us to use more generic types for the converters
trait BooleanConverter[A] extends (A => Boolean)

trait LowerPriorityBooleanConverter {
  implicit def any2bool = new BooleanConverter[AnyRef] {
    def apply(s: AnyRef) = s != null
  }
}

object BooleanConverter extends LowerPriorityBooleanConverter {

  implicit def num2bool[T: Numeric] = new BooleanConverter[T] {
    def apply(n: T) = implicitly[Numeric[T]].zero != n
  }

  // Note that this could catch String as well
  implicit def seq2bool[T <% GenTraversableOnce[_]] = new BooleanConverter[T] {
    def apply(s: T) = s != null && !s.isEmpty
  }

}

// This is similar to the original post
implicit class NonBooleanLogic[A](x: A) {

  // Note that we let the implicit converter determine the return type 
  // of the method
  def |||[B, C](y: => B)(
    // make sure we have implicits for both a converter and a boolean converter
    implicit converter: Converter[A, B, C], bool: BooleanConverter[A]): C =
    // do the actual conversion
    converter.convert(x, y)
}

几个测试的结果:

1 ||| 2                                       //> res0: Int = 1
(null: String) ||| "test"                     //> res1: String = test
1.0 ||| 2                                     //> res2: Double = 1.0
1 ||| 2.0                                     //> res3: Int = 1
List() ||| Seq("test")                        //> res4: Seq[String] = List(test)
1f ||| 2.0                                    //> res5: Float = 1.0
1f ||| 2f                                     //> res6: Float = 1.0
0f ||| 2.0                                    //> res7: Float = 2.0
0 ||| 2f                                      //> res8: Int = 2
2.0 ||| 2f                                    //> res9: Double = 2.0
2.0 ||| 3.0                                   //> res10: Double = 2.0
Seq("test") ||| List()                        //> res11: Seq[String] = List(test)
"" ||| "test"                                 //> res12: String = test

如您所见,为了保留类型,我们需要使用特定的模式。我从这里对我自己的一个问题的回答中学到了这一点:如何定义返回类型基于 Scala 中的参数类型和类型参数的方法?

这种方法的好处是您可以为特定类型添加特定转换器,而无需更改原始代码。

于 2013-02-12T21:17:26.073 回答