纯函数式编程语言_纯功能编程语言如何改变您的生活。

纯函数式编程语言

by Andrea Zanin

由Andrea Zanin

纯功能编程语言如何改变您的生活。 (How a purely functional programming language can change your life.)

I believe everyone should learn Haskell, even if you won’t use it in your work. It’s beautiful, and it changes the way you think.

我相信每个人都应该学习Haskell,即使您不会在工作中使用它。 它很漂亮,并且改变了您的思维方式。

哈斯克尔是谁? (Haskell who?)

Introductions first: what is Haskell? Haskell is a lazy, purely functional programming language.

首先介绍:什么是Haskell? Haskell是一种惰性的纯函数式编程语言。

What’s that now?

那是什么

Well, lazy means that Haskell will not execute your commands right away, but will wait until you need the result. At first this may seem strange, but it allows for some pretty nice features — like infinite lists:

好吧,懒惰意味着Haskell不会立即执行您的命令,但是会等到您需要结果为止。 乍一看,这似乎很奇怪,但是它允许一些不错的功能-例如无限列表:

evenNumbers = [0, 2..]

This snippet will declare an array containing all the even numbers. But as we said, Haskell is lazy so it won’t compute anything until forced to do so.

此代码段将声明一个包含所有偶数的数组。 但是正如我们所说,Haskell很懒,因此在被迫这样做之前它不会计算任何东西。

take 10 evenNumbers

The code returns the first 10 elements of evenNumbers, so Haskell will only compute those.

该代码返回evenNumbers的前10个元素,因此Haskell将仅计算这些元素。

Bonus: as you can see, in Haskell you call a function without parenthesis. You just enter the function’s name followed by the arguments (as in the terminal, if you please).

奖励 :如您所见,在Haskell中,您可以调用不带括号的函数。 您只需输入函数名称,后跟参数(如果需要,请在终端中输入)。

We also said that Haskell is purely functional. This means that, in general, functions have no side effects. They are black boxes that take input and spit an output without affecting the program in any other way.

我们还说过Haskell纯粹是功能性的。 这通常意味着功能没有副作用。 它们是黑匣子,接受输入并吐出输出,而不会以任何其他方式影响程序。

Bonus: This makes testing much easier, because you don’t have some mysterious state that is going to break your function. Whatever your function needs is passed as an argument and can be tested.

奖励 :这使测试变得更加容易,因为您没有任何会破坏功能的神秘状态。 无论您的函数需要什么,都将作为参数传递并可以进行测试。

数学,递归和Haskell输入一个小节 (Math, recursion, and Haskell enter a bar)

I would also add that Haskell is really like math. I’ll explain myself with an example: the Fibonacci sequence.

我还要补充一点,Haskell真的很像数学。 我将用一个例子来说明自己:斐波那契数列。

As you can see, the definitions are very similar. Too similar you may say.

如您所见,定义非常相似。 您可能说的太相似了。

So where are the loops?

那么循环在哪里?

You don’t need them! Those four lines are all it takes in Haskell to calculate the Fibonacci sequence. It’s almost trivial. It’s a recursive definition, meaning that the function calls itself. For the sake of comprehension, here is an example of a recursive function:

您不需要它们! 这四行是Haskell计算斐波纳契数列所需要的全部。 这几乎是微不足道的。 这是一个递归定义,意味着该函数调用自身。 为了理解,下面是一个递归函数的示例:

factorial :: (Integral a) => a -> afactorial 0 = 1factorial x = x * factorial (x-1)

Here is what the computer does when calculating the call factorial 5:

这是计算机在计算阶乘5时的操作

factorial 5 = 5 * factorial 4factorial 4 = 4 * factorial 3factorial 3 = 3 * factorial 2factorial 2 = 2 * factorial 1factorial 1 = 1 * factorial 0factorial 0 = 1
factorial 1 = 1 * 1 = 1factorial 2 = 2 * 1 = 2factorial 3 = 3 * 2 = 6factorial 4 = 4 * 6 = 24factorial 5 = 5 * 24 = 120

You may think that this approach is inefficient, but that’s not true. With some care you can reach C-like speed, sometimes even slightly better (see this stackoverflow thread for more).

您可能会认为这种方法效率低下,但事实并非如此。 稍加小心,您就可以达到类似C的速度,有时甚至可以达到更好的速度(有关更多信息,请参见此stackoverflow线程 )。

等待! 你没说变量吗? (Wait! Did you say no variables?)

Yes, Haskell has no variables — just constants. Well OK, in theory Haskell has variables. But you rarely use them.

是的,Haskell没有变量,只有常量。 好吧,理论上Haskell有变量。 但是您很少使用它们。

How can this be? You cannot code without variables, that’s nuts!

怎么会这样? 没有变量就无法编码,那真是太荒谬了!

Well, most languages are imperative. This means that most of the code goes towards explaining to the computer how to execute some task. Haskell, on the other hand, is declarative. So most of you code goes into defining the result you want (constants ≈ definitions). Then the compiler will figure out how to do it.

好吧,大多数语言都是必须的。 这意味着大多数代码都将向计算机解释如何执行某些任务。 另一方面,Haskell是声明性的。 因此,大多数代码都用于定义所需的结果(常量≈定义)。 然后,编译器将弄清楚该如何做。

As we already discovered, functions in Haskell are pure. There is no state to modify, and no need for variables. You pass data through various functions and retrieve the final result.

正如我们已经发现的,Haskell中的函数是纯函数。 没有修改状态,也不需要变量。 您通过各种功能传递数据并检索最终结果。

类型系统(不,我不讨论静态与动态辩论) (Type system (no I’m not going into the static vs dynamic debate))

While learning Haskell’s type system, the first jaw-dropper for me was algebraic data types. At first sight, they’re a bit like enums.

在学习Haskell的类型系统时,对我来说第一个令人垂涎的东西是代数数据类型。 乍一看,它们有点像枚举。

data Hand = Left | Right

We just defined a Hand data type that can take the value Left or Right. But let’s see a slightly more complex example:

我们只是定义了一个Hand数据类型,它可以采用值Left或Right。 但让我们看一个稍微复杂一点的例子:

data BinTree = Empty          | Leaf Int          | Node BinTree BinTree

We are defining a binary tree, using a recursive type. Type definitions can be recursive!

我们正在使用递归类型定义二叉树。 类型定义可以递归!

好吧,我明白了:Haskell很棒 (Okay I get it: Haskell is awesome)

  • But where can I learn more? My personal suggestion is the great free book Learn You a Haskell for Great Good

    但是我在哪里可以学到更多呢? 我个人的建议是一本很棒的免费书,《 学到Haskell成就伟大》

  • But I want something that can help me get a job! Many of the great features of Haskell can also be used in JavaScript (although with a slightly more complex syntax and additional libraries). To learn more, check out my Practical Introduction to Functional Programming in JS.

    但是我想要可以帮助我找到工作的东西! Haskell的许多出色功能也可以在JavaScript中使用(尽管语法稍微复杂一些,并带有其他库)。 要了解更多信息,请查看我的《 JS函数式编程实用入门》 。

翻译自: https://www.freecodecamp.org/news/haskell-has-no-while-no-for-no-variables-and-will-change-you-16455c5d2426/

纯函数式编程语言

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395003.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Win10 教育版

Windows 10 版本 1607 引入了专为 K-12 机构的特有需求而设计的两个版本:Windows 10 专业教育版和 Windows 10 教育版。 这些版本为不断发展的 K-12 教育 IT 环境提供特定于教育的默认设置。Windows 10 专业教育版Windows 10 专业教育版基于 Windows 10 专业版的商业…

java中的排序方法,Java中的排序比较方式:自然排序和比较器排序

这里所说到的Java中的排序并不是指插入排序、希尔排序、归并排序等具体的排序算法。而是指执行这些排序算法时,比较两个对象“大小”的比较操作。我们很容易理解整型的 i>j 这样的比较方式,但当我们对多个对象进行排序时,如何比较两个对象…

ImageView缩放选项

ImageView.ScaleType 将图片边界缩放到所在view边界时的缩放选项。 Options for scaling the bounds of an image to the bounds of this view. 不同选项含义 CENTER 居中,不缩放。 Center the image in the view, but perform no scaling. CENTER_CROP 居中&#x…

css命名_CSS命名约定将节省您的调试时间

css命名I have heard lots of developers say they hate CSS. In my experience, this comes as a result of not taking the time to learn CSS.我听到很多开发人员说他们讨厌CSS。 以我的经验,这是因为没有花时间学习CSS。 Korean ??韩文?? 알림: 한국인 독…

电脑删除快捷键_可能是知乎最有用的 Windows 快捷键学习指南。

在任何地方搜索“快捷键的使用”,你都能找到无数的列表清单。但你应该不会专门去对照一个个的表单,企图把所有快捷键全部掌握吧?经过三年左右的总结和视频制作,Topbook 大概产出了 20 支左右的快捷键、快捷操作及应用等相关的视频…

java自动依照日期建表,脚本根据一个表中的日期字段填充每月汇总表

你想在这里做两件事 . 我假设您正在使用Oracle(因为您正在使用Java) .首先,您希望对每个用户的每日交易进行分组 .创建一个名为 tempTable 的临时表 .使用 to_char(currentdate, yyyy/mm/dd) 对它们进行分组 .INSERT INTO tempTableSELECTuserid,resourceid,doc_nam…

算法专题 普及组【2008】三3 C++版

转载于:https://www.cnblogs.com/qilinart/articles/5914850.html

linux用户修改用户shell

要拒绝系统用户登录,可以将其shell设置为/usr/sbin/nologin或者/bin/false # usermod -s /usr/sbin/nologin username 或者 # usermod -s /bin/false username /bin/false/bin/false什么也不做只是返回一个错误状态,然后立即退出。将用户的shell设置为/bin/false,用户会无法登录…

【覆盖安装】通用测试点

需要xmind文档请留言将会私发。 转载于:https://www.cnblogs.com/syw20170419/p/10457600.html

instagram架构_如何创建像Instagram这样的照片共享应用程序:基本知识。

instagram架构by Dmytro Brovkin由Dmytro Brovkin 如何创建像Instagram这样的照片共享应用程序:基本知识。 (How to create a photo sharing app like Instagram: the basics.) After two centuries of rapid development, photography has come a long way from b…

菜鸟裹裹电脑版_【绵阳最新转让】3500低价出售家用制氧机!东芝i5笔记本电脑、索尼微单相机、联想笔记本电脑、奶茶店、服装店转让......

转换价值,传承梦想西蜀网让你淘好物~3500出售鱼跃家用制氧机,带雾化全新鱼跃152021/9F_5W型家用制氧机,带雾化。正规医疗器械公司买的,有小票,买到只用了一次,买成4382现低价转让。联系电话:邓女…

认识软件性能测试10大误区

曾经我们帮助客户进行软件性能测试的时候,客户不解的问,不是必须通过功能测试后才可以测试性能吗?可能有很多人会存在这样的疑问,在这里,我们的多位专家根据多年经验总结出性能测试的10大误区,希望能给大家…

mac php oracle11g,Oracle11G函数整理

返回字符的字符函数 1、CHR(n) [n为正整数,如果ngt;256,就去MOD(n,256)] select CHR(65) a1,CHR(67)||CHR(65)||CHR(84) a2 FR返回字符的字符函数1、CHR(n) [n为正整数,如果n>256,就去MOD(n,256)]2、CONCAT(ch1,ch2) 拼接字符串…

软工_个人博客作业3

PART1 博文阅读感想 十几篇博客一气读下来,有一个词一直萦绕在我的脑海里——紧张!紧张!还是紧张! 首先这紧张来自于自己的学习方面。作为计算机系的科班出身,当然与生俱来就有一种优越感——我们是专业的,…

Linux环境中配置环境变量无效

1.在Linux系统中的【 ~/.baserc 】文件与【 /etc/profile 】配置环境变量后(可以使任意环境变量)无效的现象,如下为解决办法: 使用命令: 1 vim ~/.zshrc 在 【# User configuration】下添加环境变量; 如图说明: 2.也可…

手机能打开的表白代码_手机拍照还能加文字?打开这个自带按钮,一键就能添加方便...

手机拍照还能文字?打开这个自带按钮,一键就能添加方便我们日常生活中,经常会在朋友圈里面看到,这样的图片,不仅图片好看,上面还带有精美的文字,里面还添加了时间、地点、天气,在配上…

如何使create-react-app与Node Back-end API一起使用

This is a very common question among newer React developers, and one question I had when I was starting out with React and Node.js. In this short example I will show you how to make create-react-app work with Node.js and Express Back-end.这在新的React开发人…

Spring Cloud Eureka 入门 (二)服务提供者详解

2019独角兽企业重金招聘Python工程师标准>>> 摘要: 原创出处:www.bysocket.com 泥瓦匠BYSocket 希望转载,保留摘要,谢谢! “优秀不是过去是一种心态” 「Spring Cloud Eureka 入门系列」Spring Cloud Eureka 入门 (一…

题解 CF682C 【Alyona and the Tree】

简单搜索题,我们每找到一组不满足题目给出条件的点和边就将其整个子树删除,然后最终答案加上该子树的大小即可。注意,搜索的时候如果当前的边权和sum已经为负了,应该将其改为0(可以想想为什么) 注&#xff…

现在mfc的现状如何_天玑云客:微信代运营现在什么现状?如何挑选合适的代运营公司?...

来源:天玑云客综合整理团队成员均来自“中国房地产策划代理百强企业”TOP10以及”中国企业500强“TOP20企业并担任重要职位。和你一起聊运营、产品、技术研发、房地产以及各种新兴行业有哪些有趣的营销玩法。由于微信公众号/小程序的影响力日益增强,以及…