F#:实现函数名与关键字begin相同的接口
我正在尝试实现 IVector 接口,它是 Microsoft.VisualC.StlClr 命名空间的一部分。它有一个成员函数begin()。如果我尝试实现该接口,那么它会抱怨“对象表达式中出现意外的关键字“开始””。
这是因为 begin 是一个关键字,而我无法实现具有该名称的成员函数吗?
B.
I am trying to implement the IVector interface which is part of the Microsoft.VisualC.StlClr namespace. It has a member function begin(). If I try to implement the interface then it complains about "unexpected keyword 'begin' in object expression".
Is this because begin is a keyword and I can't implement a member function with that name?
B.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试将它包裹成反引号。 IVector 接口太大,无法将其作为示例实现,因此示例会更小 - 下面的代码编译时没有任何错误。
you can try to wrap it into backticks. IVector inteface is too big to implement it as sample, so example will be smaller - the code below compiles without any errors.