查询 F# 中的通用用法,特别是 new T() 和 ref 单元格

发布于 2024-10-16 20:21:16 字数 194 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘦怹 2024-10-23 20:21:16

我认为像这样简单的事情就可以工作:

let getNewItem() = new 'T()

它推断默认的构造函数约束。

let mutable d = getNewItem() //d inferred to be System.DateTime
DateTime.TryParse("1/1/2011", &d)

I think something as simple as this would work:

let getNewItem() = new 'T()

It infers the default constructor constraint.

let mutable d = getNewItem() //d inferred to be System.DateTime
DateTime.TryParse("1/1/2011", &d)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文