Scala TreeSet map()方法及示例

Scala TreeSet map()方法及示例

map() 方法用来建立一个新的TreeSet,通过对给定TreeSet的所有元素应用一个函数。

方法定义: def map[B](f: (A) => B):TreeSet[B]

返回类型。它返回一个新的TreeSet,包含应用给定函数后的所有元素。

例子 #1:

// Scala program of map() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying map method  
        val result = q1.map(x => x*x)  
            
        // Displays output  
        print("TreeSet with squared elements: " + result) 
          
    } 
} 

输出。

TreeSet(1, 2, 3, 4, 5)
TreeSet with squared elements: TreeSet(1, 4, 9, 16, 25)

例子#2。

// Scala program of map() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying map method  
        val result = q1.map(x => x*x*x)  
            
        // Displays output  
        print("TreeSet with cubed elements: " + result) 
          
    } 
} 

输出。

TreeSet(1, 2, 3, 4, 5)
TreeSet with cubed elements: TreeSet(1, 8, 27, 64, 125)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程