错误字段类型“ A”是抽象类

时间:2019-04-06 11:36:12

标签: c++ xcode c++11 object

我需要聚合到抽象对象。 (字段类型“ A”是抽象类)

let oxford2 = function
    | null | [||] -> ""
    | [| a |] -> a
    | [| a; b |] -> sprintf "%s and %s" a b
    | ss ->
        let sb = System.Text.StringBuilder()
        let action i (s: string) : unit = 
            if i < ss.Length - 1 
            then 
                sb.Append s |> ignore
                sb.Append ", " |> ignore
            else 
                sb.Append "and " |> ignore
                sb.Append s |> ignore
        Array.iteri action ss          
        string sb

0 个答案:

没有答案