查询 F# 中的通用用法,特别是 new T() 和 ref 单元格
F# 相当于 C# 的这一点:
public T GetNewItem()
{
return new T();
}
此外,您如何返回 new T() 作为引用单元格,以便在需要输出的 .Net 库中使用或参考参数?
What would the F# equivalent of this bit of C#:
public T GetNewItem()
{
return new T();
}
In addition how would you return the new T() as a ref cell for usage in a .Net library requiring an out or ref parameter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为像这样简单的事情就可以工作:
它推断默认的构造函数约束。
I think something as simple as this would work:
It infers the default constructor constraint.