📜  Scala此关键字

📅  最后修改于: 2021-01-09 11:45:50             🧑  作者: Mango

斯卡拉这个

在scala中,这是一个关键字,用于引用当前对象。您可以使用此关键字调用实例变量,方法,构造函数。

斯卡拉这个例子

在下面的示例中,用于调用实例变量和主构造器。

class ThisExample{
    var id:Int = 0
    var name: String = ""
    def this(id:Int, name:String){
        this()
        this.id = id
        this.name = name
    }
    def show(){
        println(id+" "+name)
    }
}

object MainObject{
    def main(args:Array[String]){
        var t = new ThisExample(101,"Martin")
        t.show()
    }
}

输出:

101 Martin

使用此关键字的Scala构造函数调用

在以下示例中,此方法用于调用构造函数。它说明了如何从其他构造函数调用构造函数。您必须确保这必须是构造函数中的第一条语句,同时调用其他构造函数,否则编译器将引发错误。

class Student(name:String){
    def this(name:String, age:Int){
        this(name)
        println(name+" "+age)
    }    
}

object MainObject{
    def main(args:Array[String]){
        var s = new Student("Rama",100)
    }
} 

输出:

Rama 100