gpt4 book ai didi

f# - 在 F# 中创建通用列表

转载 作者:行者123 更新时间:2023-12-04 02:31:29 28 4
gpt4 key购买 nike

我正在尝试创建一个标准的 .NET List<T>在 F# 中是这样的:

module Csv

open System;

type Sheet () =
let rows = new List<Object>()

但我收到以下错误:

No constructors are available for the type List<Object>
C:\…\Csv.fs: 6



我究竟做错了什么?

最佳答案

作为其他人建议的更简单的替代方法,您可以使用名为 ResizeArray<T> 的类型。 .这是 System.Collections.Generic.List<T> 的类型别名在 F# 核心库中定义:

type Sheet () = 
let rows = new ResizeArray<Object>()

在编译后的代码中, ResizeArray<T>将被编译为 System.Collections.Generic. List<T> ,因此如果您使用 C# 中的库,则不会有任何区别。

您不必打开 System.Collections.Generic ,这将隐藏 F# List<T> 的定义类型(虽然这不是大问题),我认为 ResizeArray无论如何都是数据结构的更合适的名称。

关于f# - 在 F# 中创建通用列表 <T>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12010316/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com