码迷,mamicode.com
首页 > 其他好文 > 详细

使用 F# 列表

时间:2017-07-02 17:47:53      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:mode   print   一点   ros   列表   ring   array   ado   etl   

 

使用 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

使用 F# 列表

标签:mode   print   一点   ros   列表   ring   array   ado   etl   

原文地址:http://www.cnblogs.com/brucemengbm/p/7106509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!