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


Scala unapplySeq()用法及代码示例


unapplySeq()方法是提取器方法。它提取特定类型的对象,然后再次将其重建为提取值的序列,并且在编译时未指定此序列的长度。因此,为了重建包含序列的对象,您需要利用此unapplySeq方法。句法:

def unapplySeq(object:X):Option[Seq[T]]

在这里,我们有一个X类型的对象,当该对象不匹配时,此方法或者返回None,或者返回包含在Some类中的T类型的提取值的序列。现在,让我们通过一些示例来了解它。

例:

// Scala program of unapplySeq 
// method 
  
// Creating object 
object GfG 
{ 
  
    // Defining unapplySeq method 
    def unapplySeq(x:Any): Option[Product2[Int,Seq[String]]] = 
    { 
  
        val y = x.asInstanceOf[Author]  
          
        if(x.isInstanceOf[Author])  
        { 
            Some(y.age, y.name) 
        }      
        else
            None 
    }  
  
    // Main method 
    def main(args:Array[String]) = 
    { 
  
        // Creating object for Author 
        val x = new Author 
  
        // Applying Pattern matching 
        x match
        { 
            case GfG(y:Int,_,z:String) =>
  
            // Displays output 
            println("The age of "+z+" is:"+y) 
        } 
  
        // Assigning age and name 
        x.age = 22
        x.name = List("Rahul","Nisha") 
  
        // Again applying Pattern matching 
        x match
        {                              
            case GfG(y:Int,_,z:String) => 
      
            //Displays output 
            println("The age of "+z+" is:"+y) 
        } 
    } 
} 
  
// Creating class for author 
class Author 
{ 
  
    // Assigning age and name 
    var age: Int = 24
    var name: Seq[String] = List("Rohit","Nidhi") 
}
输出:
The age of Nidhi is:24
The age of Nisha is:22

在这里,我们在Option中使用了特征Product2,以便将两个参数传递给它。 Product2是两个元素的笛卡尔积。例子:

// Scala program of using  
//'UnapplySeq' method of  
// Extractors 
  
// Creating object 
object GfG  
{ 
  
    // Main method 
    def main(args: Array[String])  
    { 
        object SortedSeq 
        { 
      
            // Defining unapply method 
            def unapplySeq(x: Seq[Int]) = 
            { 
                if (x == x.sortWith(_ < _))  
      
                { 
                    Some(x)  
                } 
                else None 
            } 
        } 
          
        // Creating a List                      
        val x = List(1,2,3,4,5)  
  
        // Applying pattern matching 
        x match 
        {  
            case SortedSeq(a, b, c, d,e) =>
  
        // Displays output 
        println(List(a, c, e)) 
        }  
    } 
}
输出:
List(1, 3, 5)

在这里,我们使用了sortWith函数,该函数对比较函数指定的指定序列进行排序。




相关用法


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