📜  F#自我标识符

📅  最后修改于: 2021-01-01 14:31:46             🧑  作者: Mango

F#自我标识符

在F#中,self用于引用类类型的当前对象。 Self与C#和Java中的此关键字相同。您可以根据需要命名自己的标识符。您不限于.Net语言这样的名称或self。

F#Self(this)示例

type Employee(id,name) as this =
    let id = id
    let name = name
    do this.Display()           // This is how we can use self(this) object
    member this.Display() =
        printf "%d %s" id name
let e =new Employee(100, "Rajkumar")

输出:

100 Rajkumar