请考虑使用F#4.0,.NET 4.6的以下代码段:
type X<'T> = Y of 'T
type XS = X<string>
type XI = X<int>
type X<'T when 'T :> string> with
static member X = 2
static member take (s: 'T) = s
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
module XS =
let foo = 10
let create s = XS.Y s
let test = XI.take 2 // expected only string allowed, XI.take should not exist
我希望尊重类型扩展名type X<'T when 'T :> string> with
(在这种情况下,这意味着错误,因为string
已被封存,或限制'T
为string
}),或者引发语法错误。
更重要的是,我也可以使用以下语法,这将是普通类型定义中的语法错误(没有with
):
type X<'T> when 'T :> string with
static member X = 2
static member take (s: 'T) = s
我的猜测是,在扩展名上只会忽略约束。这是设计的吗?或者它应该工作,如果是的话,怎么样?
当我尝试使用类型扩展并想知道我是否可以创建一组仅适用于特定具体类型的特定方法或更具限制的具体类型时(我也可以通过继承来完成) ,我知道。)
答案 0 :(得分:3)
我认为编译器应该拒绝你的代码,但这里有一些观察结果: