如何在 Scala 中打印列表
在 Scala 中,列表定义在scala.collection.immutable
包下。列表是包含不可变数据的相同类型元素的集合。
在 Scala 中创建 List 有多种方法。让我们看一些关于如何创建 Scala 列表的基本知识。
- 创建一个空列表
例子 :// Scala program to create an empty list import scala.collection.immutable._ // Creating object object GFG { // Main method def main(args:Array[String]) { // Creating an Empty List. val emptylist: List[Nothing] = List() println("The empty list is: " + emptylist) } }
输出:
The empty list is: List()
- 创建一个简单的列表
例子 :// Scala program to create a simple Immutable lists import scala.collection.immutable._ // Creating object object GFG { // Main method def main(args:Array[String]) { // Creating and initializing immutable lists val mylist: List[String] = List("Geeks", "For", "geeks") // Display the value of mylist1 println("List is: " + mylist) } }
输出:
List is: List(Geeks, For, geeks)
- 使用 for 循环打印 List 的元素
例子 :// Scala program to print immutable lists import scala.collection.immutable._ // Creating object object GFG { // Main method def main(args:Array[String]) { // Creating and initializing immutable lists val mylist: List[String] = List("Geeks", "For", "geeks", "is", "a", "fabulous", "portal") // Display the value of mylist using for loop for(element<-mylist) { println(element) } } }
输出:
Geeks For geeks is a fabulous portal