我有一个类和一个这样定义的记录:
namespace Foo
type internal MyRecord =
{
aValue1 : int
aValue2 : int
}
static member (+) (left : MyRecord, right : MyRecord) : MyRecord =
{aValue1 = left.aValue1 + right.aValue1; aValue2 = left.aValue2 + right.aValue2;}
type internal Bar() =
member this.Baz() =
let myRecord1 = {aValue1 = 2; aValue2 = 3;}
let myRecord2 = {aValue1 = 7; aValue2 = 5;}
let sum = myRecord1 + myRecord2 //Does not compile
0
这无法编译:
成员或对象构造函数“op_Addition”不是公共的。私有成员只能从声明类型中访问。受保护的成员只能从扩展类型访问,不能从内部 lambda 表达式访问。
两种类型都是内部的。如果我明确地将+
运营商设置为公开,那也无济于事:
static member public (+) (left : MyRecord, right : MyRecord) : MyRecord
起作用的只是放弃使用运算符并使用静态方法:
namespace Foo
type internal MyRecord =
{
aValue1 : int
aValue2 : int
}
static member Add (left : MyRecord, right : MyRecord) : MyRecord =
{aValue1 = left.aValue1 + right.aValue1; aValue2 = left.aValue2 + right.aValue2;}
type internal Bar() =
member this.Baz() =
let myRecord1 = {aValue1 = 2; aValue2 = 3;}
let myRecord2 = {aValue1 = 7; aValue2 = 5;}
let sum = MyRecord.Add(myRecord1, myRecord2) //Does compile
0
为什么 F# 编译器在使用命名成员工作得很好的情况下在这种情况下难以使用运算符?
将这两种类型都更改为 public 而不是 internal 也可以解决编译错误。
我将 Visual Studio 2012 与面向 .NET Framework 3.5 的 F# 3.0 结合使用。