下划线在Scala中有什么用?


Answers:


576

我能想到的是

存在类型

def foo(l: List[Option[_]]) = ...

更高种类的参数

case class A[K[_],T](a: K[T])

忽略变量

val _ = 5

忽略的参数

List(1, 2, 3) foreach { _ => println("Hi") }

忽略自身类型的名称

trait MySeq { _: Seq[_] => }

通配符模式

Some(5) match { case Some(_) => println("Yes") }

插值中的通配符模式

"abc" match { case s"a$_c" => }

模式中的序列通配符

C(1, 2, 3) match { case C(vs @ _*) => vs.foreach(f(_)) }

通配符导入

import java.util._

隐藏进口

import java.util.{ArrayList => _, _}

加入运营商信

def bang_!(x: Int) = 5

赋值运算符

def foo_=(x: Int) { ... }

占位符语法

List(1, 2, 3) map (_ + 2)

方法值

List(1, 2, 3) foreach println _

将按名称调用参数转换为函数

def toFunction(callByName: => Int): () => Int = callByName _

默认初始化

var x: String = _   // unloved syntax may be eliminated

可能还有其他我忘记的东西!


显示为什么foo(_)foo _不同的示例:

这个例子来自0__

trait PlaceholderExample {
  def process[A](f: A => Unit)

  val set: Set[_ => Unit]

  set.foreach(process _) // Error 
  set.foreach(process(_)) // No Error
}

在第一种情况下,process _代表一种方法;Scala采用了多态方法,并尝试通过填充type参数使其变为单态,但是意识到没有可以填充的类型,因为A它会给出类型(_ => Unit) => ?(Existential _不是类型)。

在第二种情况下,process(_)是lambda;当编写没有显式参数类型的lambda时,Scala从foreach期望的参数中推断出该类型,并且_ => Unit 一种类型(而普通类型_不是),因此可以替换和推断它。

这可能是我在Scala中遇到过的最棘手的陷阱。

请注意,此示例在2.13中进行编译。忽略它就像分配给下划线一样。


4
我认为模式匹配中的下划线用法中有两个或三个都适合,但将字母连接到标点则为+1!:-)
Daniel C. Sobral

22
val x: Any = _
Giovanni Botta 2013年

2
@Owen我不认为println _是部分应用的函数。这是占位符语法的另一个示例吗?含义map(_ + 2)扩展为类似于map(x => x + 2),就像pritnln(_)扩展为类似于map(x => println(x))
Andrew Cassidy 2014年

7
@AndrewCassidy实际上println _println(_)是不同的。例如,您可以看到它们的存在方式和多态类型略有不同。稍后会举一个例子。
Owen

3
@AndrewCassidy OK,我添加了一个示例。
欧文2014年

179

FAQ中的(我的条目)开始,我当然不能保证它是完整的(两天前我添加了两个条目):

import scala._    // Wild card -- all of Scala is imported
import scala.{ Predef => _, _ } // Exception, everything except Predef
def f[M[_]]       // Higher kinded type parameter
def f(m: M[_])    // Existential type
_ + _             // Anonymous function placeholder parameter
m _               // Eta expansion of method into method value
m(_)              // Partial function application
_ => 5            // Discarded parameter
case _ =>         // Wild card pattern -- matches anything
val (a, _) = (1, 2) // same thing
for (_ <- 1 to 10)  // same thing
f(xs: _*)         // Sequence xs is passed as multiple parameters to f(ys: T*)
case Seq(xs @ _*) // Identifier xs is bound to the whole matched sequence
var i: Int = _    // Initialization to the default value
def abc_<>!       // An underscore must separate alphanumerics from symbols on identifiers
t._2              // Part of a method name, such as tuple getters
1_000_000         // Numeric literal separator (Scala 2.13+)

这也是这个问题的一部分。


2
可能是您可以添加,也可以var i: Int = _是模式匹配val (a, _) = (1, 2)的特殊情况,也可以是废弃val的特殊情况for (_ <- 1 to 10) doIt()
huynhjl 2011年

1
def f: T; def f_=(t: T)用于创建可变f成员的组合。
huynhjl

模式匹配已被覆盖,并且_方法名称上存在作弊行为。但是,好吧。我只是希望其他人更新常见问题解答... :-)
Daniel C. Sobral

1
也许你想念这个。vertx.newHttpServer.websocketHandler(_。writeXml(html))
angelokh 2013年

@angelokh这是匿名函数占位符参数,位于列表的第五位。
Daniel C. Sobral

84

下划线用法的一个很好的解释是Scala _ [underscore] magic

例子:

 def matchTest(x: Int): String = x match {
     case 1 => "one"
     case 2 => "two"
     case _ => "anything other than one and two"
 }

 expr match {
     case List(1,_,_) => " a list with three element and the first element is 1"
     case List(_*)  => " a list with zero or more elements "
     case Map[_,_] => " matches a map with any key type and any value type "
     case _ =>
 }

 List(1,2,3,4,5).foreach(print(_))
 // Doing the same without underscore: 
 List(1,2,3,4,5).foreach( a => print(a))

在Scala中,导入包时的_行为类似于*Java中的行为。

// Imports all the classes in the package matching
import scala.util.matching._

// Imports all the members of the object Fun (static import in Java).
import com.test.Fun._

// Imports all the members of the object Fun but renames Foo to Bar
import com.test.Fun.{ Foo => Bar , _ }

// Imports all the members except Foo. To exclude a member rename it to _
import com.test.Fun.{ Foo => _ , _ }

在Scala中,将为对象中的所有非私有var隐式定义getter和setter。getter名称与变量名称相同,并_=为setter名称添加。

class Test {
    private var a = 0
    def age = a
    def age_=(n:Int) = {
            require(n>0)
            a = n
    }
}

用法:

val t = new Test
t.age = 5
println(t.age)

如果您尝试将函数分配给新变量,则将调用该函数,并将结果分配给该变量。这种混乱是由于方法调用的可选括号引起的。我们应该在函数名称后使用_,以将其分配给另一个变量。

class Test {
    def fun = {
        // Some code
    }
    val funLike = fun _
}

2
这是一个很好的解释,但是甚至没有全部。它缺少被忽略的参数/变量,连接字母和标点,存在类型,更高种类的类型
Owen

在您List(1,2,3,4,5).foreach(print(_))看来List(1,2,3,4,5).foreach(print),做起来更具可读性,您甚至根本不需要下划线,但是我想这只是样式问题
Electric Coffee

1
“ _”如何用作集合中具有.map,.flatten,.toList ......功能的占位符……有时,这使我产生了误解。:(
m0z4rt 2015年

34

我可以看到这里的每个人似乎都忘了列出一种用法...

而不是这样做:

List("foo", "bar", "baz").map(n => n.toUpperCase())

您可以简单地做到这一点:

List("foo", "bar", "baz").map(_.toUpperCase())

所以_充当所有可用函数的名称空间?
Crt

2
@Crt不,它是n => n
电子咖啡

2
这不是前两个答案中提到的占位符语法吗?
joelb

13

以下是一些_使用示例:

val nums = List(1,2,3,4,5,6,7,8,9,10)

nums filter (_ % 2 == 0)

nums reduce (_ + _)

nums.exists(_ > 5)

nums.takeWhile(_ < 8)

在上述所有示例中,一个下划线表示列表中的一个元素(为了减少,第一个下划线表示累加器)


11

除了JAiro提到的用法外,我还喜欢这一用法

def getConnectionProps = {
    ( Config.getHost, Config.getPort, Config.getSommElse, Config.getSommElsePartTwo )
}

如果某人需要所有连接属性,则可以执行以下操作:

val ( host, port, sommEsle, someElsePartTwo ) = getConnectionProps

如果仅需要主机和端口,则可以执行以下操作:

val ( host, port, _, _ ) = getConnectionProps

0

有一个特定的示例使用“ _”:

  type StringMatcher = String => (String => Boolean)

  def starts: StringMatcher = (prefix:String) => _ startsWith prefix

可能等于:

  def starts: StringMatcher = (prefix:String) => (s)=>s startsWith prefix

在某些情况下应用“ _”将自动转换为“((x $ n)=> x $ n”


感觉到每个人的例子都是迭代的元素,我认为这更像是底层语法糖,lambda简明转换表示
Ke.Steve
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.