Visual Studio 2010F#作为一个高效的.NET程序语言。其混合了函数语言和物件导向程序编制语言,并且***的适用于编程、算法、技术和探索性开发,因此可以在使用的过程当中感受到趣味性和吸引力。
Visual Studio 2010F#主要是由Microsoft Research 和 Visual Studio 小组协作开发的,并采纳了F#社区和一些主要使用者的意见。#t#
Visual Studio 2010F#为Visual Studio 2010带来了很大的改观。因为替代了局部程序中的元组使工作变的简单了。在异步编程和强类型对于浮点编码方面也提供的不错的解决方式。可以说F# 是Visual Studio 2010中结合了众多优点的编程语言。#t#
简单简洁的句法
Visual Studio 2010F#像C#一样,是一种强制型的语言。但是我也可以使用类似在Python中那样的方式。既轻量级的,灵活的,数学类的编程方式。
并行和异步编程:
- Code highlighting produced by Actipro CodeHighlighter (freeware)
- http://www.CodeHighlighter.com/
- let data = (1,2,3)
- let rotations (x, y, z) =
- [ (x, y, z);
- (z, x, y);
- (y, z, x) ]
- let derivative f x =
- let p1 = f (x - 0.05)
- let p2 = f (x + 0.05)
- (p2 - p1) / 0.1
- let f x = 2.0*x*x - 6.0*x + 3.0
- let df = derivative f
- System.Console.WriteLine("The derivative of f at x=4 is {0}", df 4.0)
- 其运行结果为:“The derivative of f at x=4 is 10”。