エラーFS1133:タイプ 'リスト<' a> 'にはコンストラクタがありません。

StackOverflow https://stackoverflow.com/questions/9513891

  •  14-11-2019
  •  | 
  •  

質問

私は元気を尽くす次のようなタイプの人を作成しました。

type Person = 
    { First: string; Last : string }
    override this.ToString() = sprintf "%s, %s" this.First this.Last
.

しかし私が次のように人のリストを作ろうとすると。

let people = 
    new List<_>( 
        [|
            {First = "Bhushan"; Last = "Shinde"} 
            { First = "Abhi"; Last = "Jad"}
        |])
.

エラーを与えます:のコンストラクタは、タイプ 'List <' a> ' に使用できません。

誰かが問題なのかを説明してください?

ありがとうございました。

役に立ちましたか?

解決

In F#, the name List<_> is used to refer to the immutable F# list (defined in F# core library).

If you want to create mutable .NET list (System.Collections.Generic.List<_>), you need to use an alias that is defined in the F# library ResizeArray<_> (or you need to use fully qualified name):

let people =  
    new ResizeArray<_>(  
        [| 
            {First = "Bhushan"; Last = "Shinde"}  
            { First = "Abhi"; Last = "Jad"} 
        |]) 

If you want to create a normal F# list (and use it in a functional style), then you can just use the list comprehension syntax without passing the value to any constructor:

let people =  
        [ {First = "Bhushan"; Last = "Shinde"}  
          { First = "Abhi"; Last = "Jad"} ]
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top