Scala 中的 +() 运算符用于将元素追加到列表中。
函数定义: def +(elem: A): List[A]
返回类型: It returns a list of the stated elements after appending it to an another element.
示例#1:
// Scala program of +()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a list
val m1 = List(1, 2, 3)
// Applying + operator
val res = m1.+("10")
// Displays output
println(res)
}
}
输出:
List(1, 2, 3)10
示例#2:
// Scala program of +()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a list
val m1 = List()
// Applying + operator
val res = m1.+("10")
// Displays output
println(res)
}
}
输出:
List()10
相关用法
- Scala List exists()用法及代码示例
- Scala List map()用法及代码示例
- Scala List addString()用法及代码示例
- Scala List apply()用法及代码示例
- Scala List contains()用法及代码示例
- Scala List distinct()用法及代码示例
- Scala List drop()用法及代码示例
- Scala List dropRight()用法及代码示例
- Scala List dropWhile()用法及代码示例
- Scala List filter()用法及代码示例
- Scala List filterNot()用法及代码示例
- Scala List forall()用法及代码示例
- Scala List indexOf()用法及代码示例
- Scala List init()用法及代码示例
- Scala List iterator()用法及代码示例
- Scala List lastIndexOf()用法及代码示例
- Scala List length()用法及代码示例
- Scala List max()用法及代码示例
- Scala List min()用法及代码示例
- Scala List mkString()用法及代码示例
- Scala List product()用法及代码示例
- Scala List size()用法及代码示例
- Scala List splitAt()用法及代码示例
- Scala List sum()用法及代码示例
- Scala List take()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala List +() operator with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。