在F#中将字符串列表转换为浮点数/整数

栏目: ASP.NET · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/20825237/converting-a-list-of-strings-into-floats-ints-in-f

是否有一种快速简单的方法将整个字符串列表转换为浮点数或整数

并在F#中将它们添加到一起?

foreach(string s in list)
{
    sum += int.Parse(s);
}

这样的东西应该具有相同的效果:

let sum = list |> Seq.map System.Int32.Parse |> Seq.sum

F#似乎不支持引用int上的方法,所以我不得不使用System.Int32.

在F#中,seq类型是.NET IEnumerable的别名,因此此代码适用于数组,列表等.

注意在“无点”样式中使用Parse – 没有参数的函数可以直接用作期望该类型的另一个函数的参数.在这种情况下,Seq.map具有以下类型:

('a -> 'b) -> seq<'a> -> seq<'b>

因为System.Int32.Parse有类型字符串 – > int,Seq.map System.Int32.Parse的类型为seq<string> – > SEQ< INT取代.

翻译自:https://stackoverflow.com/questions/20825237/converting-a-list-of-strings-into-floats-ints-in-f


以上所述就是小编给大家介绍的《在F#中将字符串列表转换为浮点数/整数》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Programming Computer Vision with Python

Programming Computer Vision with Python

Jan Erik Solem / O'Reilly Media / 2012-6-22 / USD 39.99

If you want a basic understanding of computer vision's underlying theory and algorithms, this hands-on introduction is the ideal place to start. As a student, researcher, hacker, or enthusiast, you'll......一起来看看 《Programming Computer Vision with Python》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具