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 Predef.nn用法及代碼示例
- Scala Predef.classOf用法及代碼示例
- Scala Predef.valueOf用法及代碼示例
- Scala Predef.->用法及代碼示例
- Scala Prepended.partitionMap用法及代碼示例
- Scala Prepended.lengthIs用法及代碼示例
- Scala Prepended.groupMapReduce用法及代碼示例
- Scala Prepended.sortBy用法及代碼示例
- Scala Prepended.lengthCompare用法及代碼示例
- Scala Prepended.scanRight用法及代碼示例
- Scala Prepended.combinations用法及代碼示例
- Scala Prepended.inits用法及代碼示例
- Scala Prepended.collectFirst用法及代碼示例
- Scala Prepended.unzip3用法及代碼示例
- Scala Prepended.transpose用法及代碼示例
- Scala Prepended.permutations用法及代碼示例
- Scala Prepended.sizeIs用法及代碼示例
- Scala Prepended.lazyZip用法及代碼示例
- Scala Prepended.groupMap用法及代碼示例
- Scala Prepended.sliding用法及代碼示例
- Scala Prepended.tails用法及代碼示例
- Scala Prepended.sortWith用法及代碼示例
- Scala Prepended.unzip用法及代碼示例
- Scala Prepended.groupBy用法及代碼示例
- Scala Prepended.mkString用法及代碼示例
注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 Predef.locally。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。