一次性声明静态和实例成员的惯用方法?

时间:2015-08-30 10:46:46

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

当我使用新函数扩展类型时,我通常希望它可以从点符号和自由格式中获得。根据具体情况,两者都可以更具可读性,前者有助于智能感知,而后者有助于理解。

在C#/ VB.net中,扩展方法执行此操作(尽管我不能将该函数限制为扩展静态类的静态方法,如F#中所示)。我可以编写一次函数然后以两种方式调用它:

<Extension>
public function bounded(s as string, min as UShort, max as UShort) as string
    if min > max then throw new ArgumentOutOfRangeException
    if string.IsNullOrEmpty(s) then return new string(" ", min)
    if s.Length < min then return s.PadRight(min, " ")
    if s.Length > max then return s.Substring(0, max)
    return s
end function

' usage     
dim b1 = bounded("foo", 10, 15)
dim b2 = "foo".bounded(0, 2)

(那还不太完美,因为我希望bounded成为String的静态方法,但是C#/ VB.Net无法做到在这方面指向F#。)

在F#中,另一方面,我必须将该函数与方法分开声明:

// works fine
[<AutoOpen>]
module Utilities = 
    type List<'T> with
            member this.tryHead = if this.IsEmpty then None else Some this.Head        
    module List =             
        let tryHead (l : List<'T>)  = l.tryHead

问题:是否有更优雅的方式同时声明这两种方法?

我试图使用:

// doesn't quite work
type List<'T> with        
    member this.tryHead = if this.IsEmpty then None else Some this.Head
    static member tryHead(l : List<'T>) = l.tryHead

至少可以让我跳过模块声明,但是当定义编译时,它不起作用 - someList.tryHead没问题,但List.tryHead someList会产生Property tryHead is not static错误。

加分问题:如您所见,静态成员定义需要类型注释。但是,没有其他类型可以访问刚刚定义的方法。那么,为什么不能推断这种类型呢?

1 个答案:

答案 0 :(得分:3)

我不知道如何在一行代码中声明两个API,但是你可以通过使函数成为实现来摆脱类型注释,然后定义函数术语的方法:

[<AutoOpen>]
module Utilities = 
    module List =
        let tryHead l = if List.isEmpty l then None else Some (List.head l)
    type List<'a> with
        member this.tryHead = List.tryHead this