博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Scala中下划线的用途
阅读量:6047 次
发布时间:2019-06-20

本文共 1890 字,大约阅读时间需要 6 分钟。

存在性类型:

def foo(l: List[Option[_]]) = def f(m: M[_])

高阶类型参数:

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

临时变量:

val _ = 5

临时参数:

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

通配模式:

Some(5) match {
case Some(_) => println("Yes") }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 _ => }val (a, _) = (1, 2)for (_ <- 1 to 10)

通配导入:

// Imports all the classes in the package matchingimport 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 Barimport com.test.Fun.{
Foo => Bar , _ }// Imports all the members except Foo. To exclude a member rename it to _import com.test.Fun.{
Foo => _ , _ }

连接字母和标点符号:

def bang_!(x: Int) = 5

占位符:

( (_: Int) + (_: Int) )(2,3)val nums = List(1,2,3,4,5,6,7,8,9,10)nums map (_ + 2)nums sortWith(_>_)nums filter (_ % 2 == 0)nums reduceLeft(_+_)nums reduce (_ + _)nums reduceLeft(_ max _)nums.exists(_ > 5)nums.takeWhile(_ < 8)

偏函数:

def fun = {
// Some code}val funLike = fun _List(1, 2, 3) foreach println _1 to 5 map (10 * _)//List("foo", "bar", "baz").map(_.toUpperCase())List("foo", "bar", "baz").map(n => n.toUpperCase())

初始化默认值:

var d:Double = _ var i:Int = _

参数序列:

//Range转换为ListList(1 to 5:_*)//Range转换为VectorVector(1 to 5: _*)//可变参数中def capitalizeAll(args: String*) = {
args.map {
arg => arg.capitalize }}val arr = Array("what's", "up", "doc?")capitalizeAll(arr: _*)

作为参数名:

//访问mapvar m3 = Map((1,100), (2,200))for(e<-m3) println(e._1 + ": " + e._2)m3 filter (e=>e._1>1)m3 filterKeys (_>1)m3.map(e=>(e._1*10, e._2))m3 map (e=>e._2)//元组(1,2)._2

转载地址:http://ahaex.baihongyu.com/

你可能感兴趣的文章
论JVM爆炸的几种姿势及自救方法
查看>>
使用throw让服务器端与客户端进行数据交互[Java]
查看>>
java反射与代理
查看>>
深度分析Java的ClassLoader机制(源码级别)
查看>>
微服务架构选Java还是选Go - 多用户负载测试
查看>>
我的友情链接
查看>>
69、iSCSI共享存储配置实战
查看>>
乔布斯走了。你还期待苹果吗?
查看>>
优先级
查看>>
Tomcat与Web服务器、应用服务器的关系
查看>>
深度学习博客
查看>>
Android总结篇系列:Android Service
查看>>
Linux Kernel系列一:开篇和Kernel启动概要
查看>>
Android如何实现超级棒的沉浸式体验
查看>>
使用node打造自己的命令行工具方法教程
查看>>
Express代理中间件问题与解决方案
查看>>
||和&&返回什么?
查看>>
linux在文件中查找指定字符串,然后根据查找结果来做进一步的处理
查看>>
在Oracle中删除所有强制性外键约束
查看>>
【R】R语言使用命令行参数 - [编程技巧(Program Skill)]
查看>>