当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Queue apply()用法及代码示例


apply()方法用于在队列中任何给定索引处查找元素。

函数定义: def apply(idx: Int): A

返回类型: It returns the element at the given index of the queue.



范例1:

// Scala program of apply()  
// method  
  
// Import Queue   
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a queue  
        val q1 = Queue(10, 11, 12, 13, 14) 
        
        // Print the queue 
        println(q1) 
          
        // Applying apply() method  
        val result = q1.apply(0) 
          
        // Display output 
        print("Element at index 0 : " + result)    
          
    }  
} 
输出:
Queue(10, 11, 12, 13, 14)
Element at index 0 : 10

范例2:

// Scala program of apply()  
// method  
  
// Import Queue   
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a queue  
        val q1 = Queue(10, 11, 12, 13, 14) 
          
        // Print the queue 
        println(q1) 
  
        // Applying apply() method  
        val result = q1.apply(2) 
          
        // Display output 
        print("Element at index 2 : " + result)    
          
    }  
} 
输出:
Queue(10, 11, 12, 13, 14)
Element at index 2 : 12


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Queue apply() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。