คอลเลกชัน Scala - Seq
Scala Seq เป็นลักษณะที่แสดงถึงลำดับที่ไม่เปลี่ยนรูป โครงสร้างนี้ให้การเข้าถึงตามดัชนีและวิธีการอรรถประโยชน์ต่างๆเพื่อค้นหาองค์ประกอบการเกิดขึ้นและลำดับต่อมา Seq รักษาลำดับการแทรก
การประกาศตัวแปร Seq
ต่อไปนี้เป็นไวยากรณ์สำหรับการประกาศตัวแปร Seq
ไวยากรณ์
val seq: Seq[Int] = Seq(1, 2, 3, 4, 5)
ที่นี่ seq ถูกประกาศให้เป็น Seq of numbers Seq มีคำสั่งดังต่อไปนี้ -
คำสั่ง
val isPresent = seq.contains(4);
val contains = seq.endsWith(Seq(4,5));
var lastIndexOf = seq.lasIndexOf(5);
กำลังประมวลผล Seq
ด้านล่างนี้เป็นโปรแกรมตัวอย่างที่แสดงวิธีการสร้างเริ่มต้นและประมวลผล Seq -
ตัวอย่าง
import scala.collection.immutable.Seq
object Demo {
def main(args: Array[String]) = {
var seq = Seq(1, 2, 3, 4, 5, 3)
// Print seq elements
seq.foreach{(element:Int) => print(element + " ")}
println()
println("Seq ends with (5,3): " + seq.endsWith(Seq(5, 3)))
println("Seq contains 4: " + seq.contains(4))
println("Last index of 3: " + seq.lastIndexOf(3))
println("Reversed Seq" + seq.reverse)
}
}
บันทึกโปรแกรมข้างต้นใน Demo.scala. คำสั่งต่อไปนี้ใช้เพื่อคอมไพล์และรันโปรแกรมนี้
คำสั่ง
\>scalac Demo.scala
\>scala Demo
เอาต์พุต
1 2 3 4 5 3
Seq ends with (5,3): true
Seq contains 4: true
Last index of 3: 5
Reversed SeqList(3, 5, 4, 3, 2, 1)