如何像在C#中那样在F#中执行显式的重载转换?

时间:2018-11-16 01:34:05

标签: f# type-conversion c#-to-f#

假设我们在C#中有一个带有重载的隐式和显式运算符的类:

public static implicit operator CSClass(int a) => ...;
public static explicit operator int(CSClass a) => ...;

我将此项目编译为类库。

现在在F#中,我可以添加用于隐式转换的运算符并使用它:

#r @"C:\path\to.dll"
open Some.Namespace.ToMyClass
let inline (!>) (x:^a) : ^b = ((^a or ^b) : (static member op_Implicit : ^a -> ^b) x)
let a : CSClass = !> 5

但是如何在F#中执行显式的重载转换? (CSClassint

1 个答案:

答案 0 :(得分:2)

据我了解,F#通常不进行显式转换。相反,您将只使用一个函数。例如,如果您有一个char并想将其显式转换为int,请使用C#编写:

char theChar = 'A';
int convertedChar = (int)theChar;

在F#中,int运算符(函数)用于相同的目的:

let theChar = 'A'
let convertedChar = int theChar;

因此,转换的惯用方式是这样的:

module Some.Namespace.MyClass
let toInt (x : MyClass) = [...]

您将这样使用它:

let convertedMyClass = MyClass.toInt myClass

它也可以通过管道传递:

funcReturningMyClass x y
|> MyClass.toInt
|> printfn "%d"