當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Predef.locally用法及代碼示例


locally 方法(或屬性)屬於 scala.Predef 對象(object),其相關用法說明如下。

用法:

@inline
def locally[T](@deprecatedName("x") x: T): T

用於將代碼塊標記為表達式,而不是作為匿名類等的一部分。這隻是 identity 的不同名稱。

例子:

new 中分離代碼塊:

val x = new AnyRef
{
  val y = ...
  println(y)
}
// the { ... } block is seen as the body of an anonymous class
val x = new AnyRef
{
  val y = ...
  println(y)
}
// an empty line is a brittle "fix"
val x = new AnyRef
locally {
  val y = ...
  println(y)
}
// locally guards the block and helps communicate intent

源碼:

Predef.scala

相關用法


注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 Predef.locally。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。