zoukankan      html  css  js  c++  java
  • 使用 F# 列表

     

    使用 F# 列表

    在 C# 中使用 F# 的列表,是全然可能的,可是,我建议不要用,由于,仅仅要再做一点,就会使事情在 C# 看来更加自然。比如,把列表转换成数组非常easy。用List.toArray 函数;转换成System.Collections.Generic.List。用 new ResizeArray<_>()构造函数;转换成System.Collections.Generic.IEnumerable,用 List.toSeq 函数。这些类型的使用对于C# 程序猿来说。实在是太简单了,特别是System.Array 和System.Collections.Generic.List。由于它们提供了非常多的成员方法,能够在列表返回到调用的client之前,直接做转换。而在 F# 代码中使用 F# 列表类型全然可行的。MSDN 建议使用System.Collections.ObjectModel 命名空间下的 Collection 或 ReadOnlyCollection公开集合。这两个类都有一个接收IEnumerable 的构造函数,也能够从 F# 列表中构造。

    当然,假设须要直接返回 F# 列表,也行。就如以下的样例:

     

    module Strangelights.DemoModule

     

    // gets a preconstructed list

    let getList()=

      [1; 2; 3]

     

    要在 C# 中使用这个列表,通经常使用foreach 循环:

     

    using System;

    using Strangelights;

    usingMicrosoft.FSharp.Core;

    usingMicrosoft.FSharp.Collections;

     

     

    class Program

    {

        static void Main(string[] args)

        {

            // get the list ofintegers

            List<int> ints = DemoModule.getList();

            // foreach over thelist printing it

            foreach (int iin ints)

            {

                Console.WriteLine(i);

            }

        }

    }

     

    演示样例的执行结果例如以下:

    1

    2

    3

  • 相关阅读:
    【NOIP2016】换教室
    【NOIP模拟赛】总结
    【Codeforces Round 418】An impassioned circulation of affection DP
    DP测试总结
    【NOIP2012】疫情控制
    【HNOI2016】序列 莫队+单调栈+RMQ
    【Luogu P2709 小B的询问】莫队
    【HNOI2017】影魔
    【HNOI2017】大佬
    阿里云MaxCompute 2019-7月刊
  • 原文地址:https://www.cnblogs.com/brucemengbm/p/7106509.html
Copyright © 2011-2022 走看看