Метод Scala SortedSet last () с примером
Опубликовано: 13 Марта, 2022
Метод last () используется для возврата последнего элемента SortedSet.
Method Definition: def last: A
Return Type: It returns the last element of the SortedSet.
Example #1:
// Scala program of last() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4) // Applying last method val result = s1.last // Display output println(result) } } |
Output:
4
Example #2:
// Scala program of last() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet("geeks", "for", "geeks", "classes") // Applying last method val result = s1.last // Display output println(result) } } |
Output:
geeks