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


Scala BitSet dropRight()用法及代碼示例


Scala位集是一組非負整數,它們表示為打包成64位字的variable-size位數組。 drop()方法用於選擇除n項之外的所有元素。

函數定義: def drop()

返回類型: It returns a iterable collection except the n items



範例1:

// Scala program of drop()  
// method  
import scala.collection.immutable.BitSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating BitSet  
        val s1 = BitSet(1, 2, 3, 4, 5)  
          
        // Applying dropRight method  
        val s2 = s1.dropRight(2)   
          
        // Displays output  
        for(elem <- s2)  
        println(elem)  
      
    }  
} 
輸出:
1
2
3

範例2:

// Scala program of drop()  
// method  
import scala.collection.immutable.BitSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating BitSet  
        val s1 = BitSet(1, 2, 3, 7, 9, 4, 5)  
          
        // Applying dropRight method  
        val s2 = s1.dropRight(3)   
          
        // Displays output  
        for(elem <- s2)  
        println(elem)  
      
    }  
} 
輸出:
1
2
3
4



相關用法


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