函数式编程基础_在收件箱中免费学习函数式编程的基础

函数式编程基础

by Preethi Kasireddy

通过Preethi Kasireddy

在收件箱中免费学习函数式编程的基础 (Learn the fundamentals of functional programming — for free, in your inbox)

If you’re a software developer, you’ve probably noticed a growing trend: software applications keep getting more complicated.

如果您是软件开发人员,则可能已经注意到了一种不断增长的趋势: 软件应用程序越来越复杂。

It falls on our shoulders as developers to build, test, maintain, and scale these complex systems. To do so, we have to create well-structured code that is easy to understand, write, debug, reuse, and maintain.

当开发人员构建,测试,维护和扩展这些复杂的系统时,它就落在我们肩上。 为此,我们必须创建易于理解,编写,调试,重用和维护的结构良好的代码。

But actually writing programs like this requires much more than just practice and patience.

但是实际上编写这样的程序不仅仅需要练习和耐心。

In my upcoming course, Learning Functional JavaScript the Right Way, I’ll teach you how to use functional programming to create well-structured code.

在我即将开设的课程“正确学习功能JavaScript”中 我将教你如何使用函数式编程来创建结构良好的代码。

But before jumping into that course (and I hope you will!), there’s an important prerequisite: building a strong foundation in the underlying principles of functional programming.

但是在进入那门课程之前(我希望您会!),有一个重要的先决条件:在函数式编程基本原理中打下坚实的基础

So I’ve created a new free email course that will take you on a fun and exploratory journey into understanding some of these core principles. Let’s take a look at what the email course will cover, so you can decide how it fits into your programming education.

因此,我创建了一个新的免费电子邮件课程 ,它将带您进行有趣的探索性旅程,以了解其中的一些核心原则。 让我们看一下电子邮件课程的内容,以便您决定如何将其纳入您的编程教育中。

什么是函数式编程? (What is functional programming?)

So. What is “functional programming,” exactly?

所以。 到底什么是“函数式编程”?

Functional programming isn’t a framework or a tool, but a way of writing code. In functional programming, we place a major emphasis on writing code using functions as “building blocks.”

函数式编程不是框架或工具,而是一种编写代码的方式 。 在函数式编程中,我们主要强调使用函数作为“构建块”来编写代码

Your program is defined in terms of one main function. This main function is defined in terms of other functions, which are in turn defined in terms of still more functions — until at the bottom level the functions are just language primitives like “number” or “string.”

您的程序是根据一项主要功能定义的。 主要功能是根据其他功能定义的,其他功能又定义了其他功能-直到最底层的功能都是诸如“数字”或“字符串”之类的语言原语。

If you’re reading this thinking, “Hmm, but wait? Doesn’t every language use functions to write code?” then good ?. It means you’re paying attention. You’re right — every programming language has functions. But functional programming takes it to a whole ‘nother level ?

如果您正在阅读这种想法, “嗯,还等什么? 并非每种语言都使用函数编写代码吗?” 那好吗? 这意味着您正在注意。 您是对的,每种编程语言都有功能。 但是函数式编程将它带到了一个全新的高度?

To understand what I mean, let’s rewind and start with the basics.Every software program has two things:

为了理解我的意思,让我们回顾一下基础知识。每个软件程序都有两件事:

  1. Behavior

    行为
  2. Data

    数据

When we’re learning about a programming paradigm — like functional programming — it’s often helpful to consider how the paradigm approaches behavior and data respectively. Behavior, for example, is handled purely using functions in functional programming. Functions are “self contained” pieces of code that accomplish a specific task. It defines a relationship between a set of possible inputs and a set of possible outputs — they usually take in data, process it, and return a result. Once a function is written, it can be used over and over and over again. Data is, well, data. In functional programming, data is immutable — meaning it can’t be changed. Rather than changing data they take in, functions in functional programming take in data as input and produce new values as output. Always. Functions and immutable data are the only two things you need to ever deal with in functional programming. To make it even simpler, functions are treated no differently than data.

当我们学习编程范例(如函数式编程)时,考虑范例如何分别处理行为和数据通常会很有帮助。 例如, 行为仅在函数式编程中使用函数来处理。 函数是完成特定任务的“自包含”代码段。 它定义了一组可能的输入和一组可能的输出之间的关系-它们通常接收数据,对其进行处理并返回结果。 编写函数后,就可以一次又一次地使用它。 数据就是数据。 在函数式编程中,数据是不可变的,这意味着无法更改。 功能编程中的功能不是更改其接收的数据,而是将数据作为输入,并产生新的值作为输出。 总是。 函数和不变数据是函数编程中仅需处理的两件事。 为了使其更简单,对函数的对待与对数据的对待没有区别。

Put another way, functions in functional programming can be passed around as easily as data. You can refer to them from constants and variables, pass them as parameters to other functions, and return them as results from other functions. This is the most important thing to understand when approaching functional programming.

换句话说, 函数式编程中的函数可以像数据一样容易地传递。 您可以从常量变量中引用它们,将它们作为参数传递给其他函数,并作为其他函数的结果返回。 在进行函数式编程时,这是最重要的了解。

By treating functions as nothing more special than a piece of data and by only using data that is immutable, we are given a lot more freedom in terms of how we can use functions.

通过将函数视为仅比一条数据更特殊的事物,并且仅使用不可变的数据,就如何使用函数而言,我们将获得更多的自由。

Namely, it allows us to create small, independent functions that can be reused and combined together to build up increasingly complex logic. We can break any complex problem down into smaller sub-problems, solve them using functions, and finally combine them together to solve the bigger problem. Considering the ever-growing complexity of software applications, this kind of “building-block” approach makes a huge difference in keeping programs simple, modular, and understandable. This is also why developers strive to make their functions as general-purpose as possible, so that they can be combined to solve large, complex problems and reused to speed up development time for subsequent programs.

即,它使我们能够创建小的独立功能,这些功能可以重复使用并组合在一起以建立越来越复杂的逻辑。 我们可以将任何复杂的问题分解为较小的子问题,使用函数解决它们,最后将它们组合在一起以解决更大的问题。 考虑到软件应用程序的日益复杂性,这种“构建块”方法在使程序保持简单,模块化和易于理解方面具有巨大的差异。 这也是开发人员努力使它们的功能尽可能通用的原因,以便可以将它们组合起来解决大而复杂的问题,并可以重用它们以加快后续程序的开发时间。

Ultimately, the reason that functions are so powerful in functional programming is because the functions follow certain core tenets. Those tenets will be the subject of my email course:

最终,功能之所以在功能编程中如此强大是因为这些功能遵循某些核心原则。 这些原则将成为我的电子邮件课程的主题:

  • Functions are pure

    功能纯
  • Functions use immutable data

    函数使用不可变数据
  • Functions guarantee referential transparency

    功能保证参照透明
  • Functions are first-class entities

    功能是一流的实体

After that, I’ll briefly touch on how functional programming applies these tenets to encourage us to think carefully about our data and the functions that interact with it.

之后,我将简要介绍函数式编程如何应用这些原则,以鼓励我们仔细考虑数据以及与之交互的函数。

By the end, you’ll be able to understand how this approach leads to code that is:

到最后,您将能够了解这种方法如何导致代码如下:

  • Easier to understand (that is, “expressive”)

    易于理解(即“表达”)
  • Easier to reuse

    易于重用
  • Easier to test

    更容易测试
  • Easier to maintain

    易于维护
  • Easier to refactor

    易于重构
  • Easier to optimize

    易于优化
  • Easier to reason about

    容易推理

Sound exciting? Come along for the ride!

听起来令人兴奋吗? 快来兜风吧!

Sign up for the free email course now. Then you’ll receive the first lesson in your inbox within 1–3 days of signing up ?

立即注册免费的电子邮件课程 。 注册后的1-3天内,您会在收件箱中收到第一堂课吗?

翻译自: https://www.freecodecamp.org/news/learning-the-fundamentals-of-functional-programming-425c9fd901c6/

函数式编程基础

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

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

相关文章

安卓Java虚拟机大小_虚拟机为安卓流畅度背锅,是因为关系数十万程序员饭碗?...

导读:虚拟机相当于应用程序在不同运行环境中的翻译。说起谷歌安卓系统的“虚拟机”,很多人爱拿它和苹果iOS做比较,结果,安卓的很多短腿儿都让虚拟机背了锅,比如安卓手机运存容量是iPhone的两到三倍,流畅度却…

Redis PHP连接操作

安装 要在PHP程序中使用Redis,首先需要确保 Redis 的PHP驱动程序和 PHP 安装设置在机器上。可以查看 PHP教程 教你如何在机器上安装PHP。现在,让我们来看看一下如何设置 Redis 的PHP驱动程序。 需要从 github 上资料库: https://github.com/n…

AppCompatActivity实现全屏的问题

前言:我的 Activity 是继承 BaseActivity , 而 BaseActivity 继承 AppCompatActivity 。 BaseActivity 的继承 /*** 应用程序的基类**/ public class BaseActivity extends AppCompatActivity {}HomeActivity 的继承 public class HomeActivity extends BaseActivit…

aws cognito_使用AWS Cognito的用户管理—(1/3)初始设置

aws cognitoby Kangze Huang黄康泽 使用AWS Cognito的用户管理—(1/3)初始设置 (User Management with AWS Cognito — (1/3) Initial Setup) 完整的AWS Web样板-教程1A (The Complete AWS Web Boilerplate — Tutorial 1A) Main Table of Contents Click Here主要目录请点击这…

java建一个conversion_Scala中的JavaConverters和JavaConversions之间有什么区别?

JavaConversions 提供了一系列隐式方法,可以在Java集合和最接近的相应Scala集合之间进行转换,反之亦然 . 这是通过创建实现Scala接口的包装器并将调用转发到底层Java集合或Java接口,将调用转发到底层Scala集合来完成的 .JavaConverters 使用p…

flexbox:1.0.0_了解Flexbox:您需要了解的一切

flexbox:1.0.0This article will cover all the fundamental concepts you need to get good with the CSS Flexbox model. It’s a long one, so I hope you’re ready for it.本文将介绍您熟悉CSS Flexbox模型所需的所有基本概念。 这是一个很长的时间,所以希望您…

10.Object类

在JAVA中,所有的类都直接或间接继承了Java.lang.Object类Object是一个特殊的类,他是所有类的父类,是Java类层中的最高层类。当创建一个类时,他总是在继承,除非某个类已经指定要从其他类继承,否则他就是从ja…

RecyclerView的下拉刷新和加载更多 动画

下拉刷新和加载更多 1、https://github.com/jianghejie/XRecyclerView 2、http://blog.csdn.net/jabony/article/details/44780187 动画 1、https://github.com/wasabeef/recyclerview-animators

java中显示动态信息的方法_java里的动态表单技术

最近的一个项目,由于客户的需求等信息不确定,为了降低以后修改的成本及产品的推广考虑到动态表单技术,之前也一直在考虑到动态表单技术,毕竟在delphi里已经实现过了,由于我们采用的hibernate的执久层的原故&#xff0c…

Cinder 组件详解 - 每天5分钟玩转 OpenStack(47)

本节我们将详细讲解 Cinder 的各个子服务。 cinder-api cinder-api 是整个 Cinder 组件的门户,所有 cinder 的请求都首先由 nova-api 处理。cinder-api 向外界暴露若干 HTTP REST API 接口。在 keystone 中我们可以查询 cinder-api 的 endponits。 客户端可以将请…

中国移动 全球通、 动感地带、神州行 的区别

1、全球通 1、主要面向商务人士可以享受机场VIP俱乐部的尊贵、1860专席的高质量服务、个性化账单、客户积分奖励以及大客户经理贴心服务,更有尊贵资费套餐优惠,但它价格也是最贵的。 2、全球通面对事业成功的人士,进取。 3、全球通&#xff…

java 并发测试main方法_java并发编程test之synchronized测试

synchronized关键字可以用于声明方法,也可以用于声明代码块;package com.test.java;public class SyncTest {public static void main(String[] args) {SynchronizedDemo1 synct1 new SynchronizedDemo1();SynchronizedDemo2 synct new SynchronizedDemo2();SynchronizedDemo…

业余爱好者linux_如何从业余爱好者变成专业开发人员

业余爱好者linuxby Ken Rogers肯罗杰斯(Ken Rogers) 如何从业余爱好者变成专业开发人员 (How to Go From Hobbyist to Professional Developer) A few years ago, I was bouncing back and forth between landscaping jobs and restaurant jobs. I had just left college, and…

RedHat Enterprise Linux 6 配置Xmanager ,实现图形界面连接

我们经常见到的几种最为常用的windows下远程管理Linux服务器的方法,基本上都是利用SecureCRT,或者是PUTTY等客户端工具通过ssh服务来实现Windows下管理Linux服务器的,这些客户端工具几乎不需要什么配置,使用简单,但是它们都无法启…

Mac下配置iterm2 支持rz sz命令

转自:http://blog.csdn.net/citywolf4/article/details/49071679 1.安装lrzsz,使用brew命令:brew install lrzsz如果找不到lrzsz,使用以下命令更新brew库:brew update2.下载zmoden脚本在https://github.com/mmastrac/iterm2-zmode…

java中session对象登录_JavaWeb中Session对象的学习笔记

一、Session简单介绍在WEB开发中,服务器可以为每个用户浏览器创建一个会话对象(session对象),注意:一个浏览器独占一个session对象(默认情况下)。因此,在需要保存用户数据时,服务器程序可以把用户数据写到用户浏览器独…

vux flexbox使用_Flexbox用大的,彩色的动画gif进行解释

vux flexbox使用Here are three links worth your time:这是三个值得您花费时间的链接: How Flexbox works — explained with big, colorful, animated gifs (5 minute read) Flexbox的工作原理-带有大尺寸,彩色动画gif动画( 阅读5分钟 ) How to commi…

微信小程序 没有找到 node_modules 目录

在学习小程序云开发的时候,遇到一个问题,使用npm i --production 和npm i vant-weapp -S --production之后,在微信开发者工具中并没有node_modules文件夹 但是在根目录下生成了一个package-lock.json文件。也就是下载的依赖都已经装好了&…

关于Unity中UI中的Image节点以及它的Image组件

一、图片的Inspector面板属性 Texture Type:一般是选择sprite(2D and UI) Sprite Mode:一般是选择Single Packing Tag:打包的标志值,最后打包的时候会把Tag相同的所有小图打包成一个大图。不像cocos打包图集需要用到第三方软件&am…

Knockoutjs官网翻译系列(一)

最近马上要开始一个新项目的研发,作为第一次mvvm应用的尝试,我决定使用knockoutjs框架。作为学习的开始就从官网的Document翻译开始吧,这样会增加印象并加入自己的思考,说是翻译也并不是纯粹的翻译,会加入自己对知识点的思考以及自…