當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Set +()用法及代碼示例


+() 方法用於創建帶有附加元素的新集合,除非該元素已經存在。

函數定義: def +(elem: A): Set[A]

返回類型: It returns a new set with an additional element unless the element is already present.

示例#1:


// Scala program of +()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a set  
        val s1 = Set(1, 2, 3, 4, 6, 7)  
          
        // Applying +() method  
        val result = s1.+(5) 
              
        // Display output 
        print(result)     
    }  
}  
輸出:
Set(5, 1, 6, 2, 7, 3, 4)

示例#2:


// Scala program of +()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a set  
        val s1 = Set(41, 12, 23, 43, 1, 72)  
          
        // Applying +() method  
        val result = s1.+(100) 
              
        // Display output 
        print(result)     
    }  
}  
輸出:
Set(1, 41, 12, 72, 43, 23, 100)


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Set +() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。