响应式编程 函数式编程_函数式编程的基本原理简介

响应式编程 函数式编程

After a long time learning and working with object-oriented programming, I took a step back to think about system complexity.

经过长时间的学习和使用面向对象的编程,我退后了一步来思考系统的复杂性。

Complexity is anything that makes software hard to understand or to modify." — John Outerhout Complexity is anything that makes software hard to understand or to modify. ” — John Outerhout

Doing some research, I found functional programming concepts like immutability and pure function. Those concepts are big advantages to build side-effect-free functions, so it is easier to maintain systems — with some other benefits.

经过一些研究,我发现了函数式编程的概念,例如不变性和纯函数。 这些概念是构建无副作用功能的巨大优势,因此,维护系统更容易-还有其他好处

In this post, I will tell you more about functional programming, and some important concepts, with a lot of code examples.

在本文中,我将通过许多代码示例向您详细介绍函数式编程和一些重要概念。

This article uses Clojure as a programming language example to explain Functional Programming. If you are not comfortable with a LISP-type-of-language, I also published the same post in JavaScript. Take a look: Functional Programming Principles in Javascript

本文使用Clojure作为编程语言示例来解释函数式编程。 如果您对LISP类型的语言不满意,我也会在JavaScript中发布同一篇文章。 看看: Javascript中的函数式编程原理

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

Functional programming is a programming paradigm — a style of building the structure and elements of computer programs — that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data — 函数式编程是一种编程范式-一种构建计算机程序的结构和元素的方式-将计算视为对数学函数的评估,并且避免了状态和可变数据的更改- Wikipedia 维基百科

纯功能 (Pure functions)

Mohan Murugesan on Mohan Murugesan在《 Unsplash Unsplash 》上的“水滴”

The first fundamental concept we learn when we want to understand functional programming is pure functions. But what does that really mean? What makes a function pure?

当我们想了解函数式编程时,我们学习的第一个基本概念是纯函数 。 但这到底是什么意思? 是什么使函数纯净?

So how do we know if a function is pure or not? Here is a very strict definition of purity:

那么我们如何知道一个函数是否pure呢? 这是一个非常严格的纯度定义:

  • It returns the same result if given the same arguments (it is also referred as deterministic)

    如果给定相同的参数,它将返回相同的结果(也称为deterministic )

  • It does not cause any observable side effects

    它不会引起任何明显的副作用
如果给定相同的参数,它将返回相同的结果 (It returns the same result if given the same arguments)

Imagine we want to implement a function that calculates the area of a circle. An impure function would receive radius as the parameter, and then calculate radius * radius * PI. In Clojure, the operator comes first, so radius * radius * PI becomes (* radius radius PI):

假设我们要实现一个计算圆的面积的函数。 一个不纯函数将接收radius作为参数,然后计算radius * radius * PI 。 在Clojure中,运算符排在最前面,因此radius * radius * PI变为(* radius radius PI)

Why is this an impure function? Simply because it uses a global object that was not passed as a parameter to the function.

为什么这是不纯功能? 仅仅是因为它使用了未作为参数传递给函数的全局对象。

Now imagine some mathematicians argue that the PI value is actually 42and change the value of the global object.

现在想象一些数学家认为PI值实际上是42并更改了全局对象的值。

Our impure function will now result in 10 * 10 * 42 = 4200. For the same parameter (radius = 10), we have a different result. Let's fix it!

我们的不纯函数现在将导致10 * 10 * 42 = 4200 。 对于相同的参数( radius = 10 ),我们得到不同的结果。 让我们修复它!

TA-DA ?! Now we’ll always pass thePI value as a parameter to the function. So now we are just accessing parameters passed to the function. No external object.

TA-DA?! 现在,我们将始终将P I值作为参数传递给函数。 因此,现在我们只访问传递给函数的参数。 没有xternal object.

  • For the parameters radius = 10 & PI = 3.14, we will always have the same the result: 314.0

    对于参数radius = 10PI = 3.14 ,我们将始终具有相同的结果: 314.0

  • For the parameters radius = 10 & PI = 42, we will always have the same the result: 4200

    对于参数radius = 10PI = 42 ,我们将始终具有相同的结果: 4200

读取文件 (Reading Files)

If our function reads external files, it’s not a pure function — the file’s contents can change.

如果我们的函数读取外部文件,则它不是纯粹的函数-文件的内容可以更改。

随机数生成 (Random number generation)

Any function that relies on a random number generator cannot be pure.

任何依赖随机数生成器的函数都不能是纯函数。

它不会引起任何明显的副作用 (It does not cause any observable side effects)

Examples of observable side effects include modifying a global object or a parameter passed by reference.

可观察到的副作用的示例包括修改全局对象或通过引用传递的参数。

Now we want to implement a function to receive an integer value and return the value increased by 1.

现在我们要实现一个函数,以接收一个整数值并返回增加了1的值。

We have the counter value. Our impure function receives that value and re-assigns the counter with the value increased by 1.

我们有对counter 。 我们的不纯函数会收到该值,然后将值增加1的值重新分配给计数器。

Observation: mutability is discouraged in functional programming.

观察 :在函数式编程中不鼓励可变性。

We are modifying the global object. But how would we make it pure? Just return the value increased by 1. Simple as that.

我们正在修改全局对象。 但是,我们将如何使其pure呢? 只需返回增加1的值即可。就这么简单。

See that our pure function increase-counter returns 2, but the counter value is still the same. The function returns the incremented value without altering the value of the variable.

看到我们的纯函数increase-counter返回2,但是counter值仍然相同。 该函数将返回增加的值,而不更改变量的值。

If we follow these two simple rules, it gets easier to understand our programs. Now every function is isolated and unable to impact other parts of our system.

如果我们遵循这两个简单的规则,就会更容易理解我们的程序。 现在,每个功能都是孤立的,无法影响系统的其他部分。

Pure functions are stable, consistent, and predictable. Given the same parameters, pure functions will always return the same result. We don’t need to think of situations when the same parameter has different results — because it will never happen.

纯函数是稳定,一致和可预测的。 给定相同的参数,纯函数将始终返回相同的结果。 我们不需要考虑相同参数产生不同结果的情况-因为它永远不会发生。

纯功能的好处 (Pure functions benefits)

The code’s definitely easier to test. We don’t need to mock anything. So we can unit test pure functions with different contexts:

该代码绝对更容易测试。 我们不需要嘲笑任何东西。 因此,我们可以对具有不同上下文的纯函数进行单元测试:

  • Given a parameter A → expect the function to return value B

    给定参数A →期望函数返回值B

  • Given a parameter C → expect the function to return value D

    给定参数C →期望函数返回值D

A simple example would be a function to receive a collection of numbers and expect it to increment each element of this collection.

一个简单的示例是一个函数,该函数接收一个数字集合,并期望它增加该集合的每个元素。

We receive the numbers collection, use map with the inc function to increment each number, and return a new list of incremented numbers.

我们接收到numbers集合,将mapinc函数一起使用以递增每个数字,并返回一个新的递增数字列表。

For the input [1 2 3 4 5], the expected output would be [2 3 4 5 6].

对于input [1 2 3 4 5] ,预期output将为[2 3 4 5 6]

不变性 (Immutability)

Unchanging over time or unable to be changed. 随时间不变或无法更改。
“Change neon light signage” by Ross Findon on Unsplash
罗斯· 芬顿 ( Ross Findon)在《 Unsplash 》上的“改变霓虹灯标牌”

When data is immutable, its state cannot change after it’s created. If you want to change an immutable object, you can’t. Instead, you create a new object with the new value.

当数据不可变时,其状态无法更改 创建之后。 如果要更改不可变对象,则不能。 而是使用新值创建一个新对象。

In Javascript we commonly use the for loop. This next for statement has some mutable variables.

在Javascript中,我们通常使用for循环。 接下来的for语句具有一些可变变量。

For each iteration, we are changing the i and the sumOfValue state. But how do we handle mutability in iteration? Recursion! Back to Clojure!

对于每次迭代,我们都会更改isumOfValue 状态 。 但是,我们如何处理迭代中的可变性呢? 递归! 回到Clojure!

So here we have the sum function that receives a vector of numerical values. The recur jumps back into the loop until we get the vector empty (our recursion base case). For each "iteration" we will add the value to the total accumulator.

因此,这里有sum函数,用于接收数值向量。 该recur跳回loop ,直到我们得到了向量空( 我们的递归base case )。 对于每个“迭代”,我们会将其值添加到total累加器中。

With recursion, we keep our variables immutable.

通过递归,我们保留变量 一成不变的。

Observation: Yes! We can use reduce to implement this function. We will see this in the Higher Order Functions topic.

观察 :是的! 我们可以使用reduce来实现此功能。 我们将在“ Higher Order Functions主题中看到这一点。

It is also very common to build up the final state of an object. Imagine we have a string, and we want to transform this string into a url slug.

建立对象的最终状态也很常见。 假设我们有一个字符串,并且我们想将此字符串转换为url slug

In OOP in Ruby, we would create a class, let’s say, UrlSlugify. And this class will have a slugify! method to transform the string input into a url slug.

在Ruby的OOP中,我们将创建一个类,例如UrlSlugify 。 这节课会有一个slugify! 将字符串输入转换为url slug

Beautiful! It’s implemented! Here we have imperative programming saying exactly what we want to do in each slugify process — first lower case, then remove useless white spaces and, finally, replace remaining white spaces with hyphens.

美丽! 它实现了! 在这里,我们必须执行命令式编程,以确切说明我们在每个slugify过程中要执行的操作-首先小写字母,然后删除无用的空格,最后用连字符替换其余的空格。

But we are mutating the input state in this process.

但是我们在这个过程中正在改变输入状态。

We can handle this mutation by doing function composition, or function chaining. In other words, the result of a function will be used as an input for the next function, without modifying the original input string.

我们可以通过执行功能组合或功能链接来处理此突变。 换句话说,函数的结果将用作下一个函数的输入,而无需修改原始输入字符串。

Here we have:

这里有:

  • trim: removes whitespace from both ends of a string

    trim :删除字符串两端的空格

  • lower-case: converts the string to all lower-case

    lower-case :将字符串转换为所有小写

  • replace: replaces all instances of match with replacement in a given string

    replace :用给定字符串中的替换替换匹配的所有实例

We combine all three functions and we can "slugify" our string.

我们结合了所有三个功能,可以"slugify"字符串。

Speaking of combining functions, we can use the comp function to compose all three functions. Let's take a look:

说到组合函数 ,我们可以使用comp函数来组合所有三个函数。 让我们来看看:

参照透明 (Referential transparency)

“person holding eyeglasses” by Josh Calabrese on Unsplash
乔什·卡拉布雷斯 ( Josh Calabrese)Unsplash发表的“戴眼镜的人”

Let’s implement a square function:

让我们实现一个square function

This (pure) function will always have the same output, given the same input.

给定相同的输入,此(纯)函数将始终具有相同的输出。

Passing “2” as a parameter of the square functionwill always returns 4. So now we can replace the (square 2) with 4. That's it! Our function is referentially transparent.

传递“ 2”作为square function的参数将始终返回4。因此,现在我们可以将4替换为(square 2) 。 我们的功能是referentially transparent

Basically, if a function consistently yields the same result for the same input, it is referentially transparent.

基本上,如果一个函数对于相同的输入始终产生相同的结果,则它是参照透明的。

pure functions + immutable data = referential transparency

纯函数+不可变数据=参考透明

With this concept, a cool thing we can do is to memoize the function. Imagine we have this function:

有了这个概念,我们可以做的一件很酷的事情就是记住该功能。 假设我们具有以下功能:

The (+ 5 8) equals 13. This function will always result in 13. So we can do this:

(+ 5 8)等于13 。 此功能将始终导致13 。 因此,我们可以这样做:

And this expression will always result in 16. We can replace the entire expression with a numerical constant and memoize it.

这个表达式将始终为16 。 我们可以将整个表达式替换为数字常量并进行记忆

作为一流实体 (Functions as first-class entities)

Andrew Neel on 安德鲁·尼尔 ( Unsplash Under Splash)的 “一流”

The idea of functions as first-class entities is that functions are also treated as values and used as data.

函数作为一等实体的想法是将函数视为值用作数据。

In Clojure it’s common to use defn to define functions, but this is just syntactic sugar for (def foo (fn ...)). fn returns the function itself. defn returns a var which points to a function object.

在Clojure中,通常使用defn定义函数,但这只是(def foo (fn ...))语法糖。 fn返回函数本身。 defn返回一个指向函数对象的var

Functions as first-class entities can:

作为一流实体的功能可以:

  • refer to it from constants and variables

    从常量和变量中引用它
  • pass it as a parameter to other functions

    将其作为参数传递给其他函数
  • return it as result from other functions

    作为其他函数的结果返回

The idea is to treat functions as values and pass functions like data. This way we can combine different functions to create new functions with new behavior.

这个想法是将函数视为值,并像数据一样传递函数。 这样,我们可以组合不同的功能以创建具有新行为的新功能。

Imagine we have a function that sums two values and then doubles the value. Something like this:

假设我们有一个将两个值相加然后将值加倍的函数。 像这样:

Now a function that subtracts values and the returns the double:

现在,一个减去值并返回双精度值的函数:

These functions have similar logic, but the difference is the operators functions. If we can treat functions as values and pass these as arguments, we can build a function that receives the operator function and use it inside our function. Let’s build it!

这些功能具有相似的逻辑,但是区别在于运算符功能。 如果我们可以将函数视为值并将其作为参数传递,则可以构建一个接收操作符函数并在函数内部使用的函数。 让我们来构建它!

Done! Now we have an f argument, and use it to process a and b. We passed the + and - functions to compose with the double-operator function and create a new behavior.

做完了! 现在我们有一个f参数,并用它来处理ab 。 我们通过+-函数与double-operator函数组合在一起并创建新行为。

高阶函数 (Higher-order functions)

When we talk about higher-order functions, we mean a function that either:

当我们谈论高阶函数时,我们指的是以下函数之一:

  • takes one or more functions as arguments, or

    将一个或多个函数作为参数,或
  • returns a function as its result

    返回一个函数作为其结果

The double-operator function we implemented above is a higher-order function because it takes an operator function as an argument and uses it.

上面我们实现的double-operator函数是一个高阶函数,因为它接受一个operator函数作为参数并使用它。

You’ve probably already heard about filter, map, and reduce. Let's take a look at these.

您可能已经听说过filtermapreduce 。 让我们来看看这些。

过滤 (Filter)

Given a collection, we want to filter by an attribute. The filter function expects a true or false value to determine if the element should or should not be included in the result collection. Basically, if the callback expression is true, the filter function will include the element in the result collection. Otherwise, it will not.

给定一个集合,我们想按属性过滤。 筛选器函数期望使用truefalse值来确定是否应将元素包含在结果集合中。 基本上,如果回调表达式为true ,则过滤器函数会将元素包括在结果集合中。 否则,它将不会。

A simple example is when we have a collection of integers and we want only the even numbers.

一个简单的例子是当我们有一个整数集合并且我们只需要偶数时。

Imperative approach

势在必行

An imperative way to do it with Javascript is to:

使用Javascript的一种必要方法是:

  • create an empty vector evenNumbers

    创建一个空向量evenNumbers

  • iterate over the numbers vector

    遍历numbers向量

  • push the even numbers to the evenNumbers vector

    将偶数推到evenNumbers向量

We can use the filter higher order function to receive the even? function, and return a list of even numbers:

我们可以使用filter高阶函数来接收even? 函数,并返回偶数列表:

One interesting problem I solved on Hacker Rank FP Path was the Filter Array problem. The problem idea is to filter a given array of integers and output only those values that are less than a specified value X.

我在Hacker Rank FP路径上解决的一个有趣的问题是“ 过滤器阵列”问题 。 问题的思想是过滤给定的整数数组,仅输出小于指定值X那些值。

An imperative Javascript solution to this problem is something like:

解决此问题的强制性Javascript解决方案如下:

We say exactly what our function needs to do — iterate over the collection, compare the collection current item with x, and push this element to the resultArray if it pass the condition.

我们确切地说出函数需要做的事情–遍历集合,将集合当前项与x进行比较,如果该元素通过条件,则将其推送到resultArray

Declarative approach

声明式方法

But we want a more declarative way to solve this problem, and using the filter higher order function as well.

但是,我们需要一种更具声明性的方式来解决此问题,并且还需要使用filter高阶函数。

A declarative Clojure solution would be something like this:

声明式Clojure解决方案如下所示:

This syntax seems a bit strange in the first place, but is easy to understand.

首先,这种语法似乎有些奇怪,但是很容易理解。

#(> x %) is just a anonymous function that receives x and compares it with each element in the collection. % represents the parameter of the anonymous function — in this case the current element inside the filter.

#(> x %)仅仅是一个匿名函数接收地e SX,并将其与在收藏品的每个元素进行比较n 。 %代表匿名函数的参数-在这种情况下,是he fil的当前元素。

We can also do this with maps. Imagine we have a map of people with their name and age. And we want to filter only people over a specified value of age, in this example people who are more than 21 years old.

我们也可以使用地图来做到这一点。 想象一下,我们有一幅地图,上面有他们的nameage 。 并且我们只希望过滤特定年龄段的人员,在此示例中,年龄超过21岁的人员。

Summary of code:

代码摘要:

  • we have a list of people (with name and age).

    我们有一个人的名单( nameage )。

  • we have the anonymous function #(< 21 (:age %)). Remember that the % represents the current element from the collection? Well, the element of the collection is a people map. If we do (:age {:name "TK" :age 26}), it returns the age value, 26 in this case.

    我们有匿名函数#(< 21 (:age %))。 记住是t h Ë%表示从集合当前元素? 好吧,集合的元素是人脉地图。 如果我们do (:age {:name "TK" :age 2 6}),它将返回年龄值e,在这种情况下为26。

  • we filter all people based on this anonymous function.

    我们基于此匿名函数过滤所有人员。
地图 (Map)

The idea of map is to transform a collection.

map的想法是转换集合。

mapmap

Let’s get the same people collection above. We don't want to filter by “over age” now. We just want a list of strings, something like TK is 26 years old. So the final string might be :name is :age years old where :name and :age are attributes from each element in the people collection.

让我们得到上面的同一people集合。 我们现在不想按“年龄超过”进行过滤。 我们只想要一个字符串列表,例如TK is 26 years old 。 因此,最后一个字符串可能是:name is :age years old ,其中:name:agepeople集合中每个元素的属性。

In a imperative Javascript way, it would be:

以命令式Javascript方式,它将是:

In a declarative Clojure way, it would be:

以声明性的Clojure方式,它将是:

The whole idea is to transform a given collection into a new collection.

整个想法是将给定的集合转换为新的集合。

Another interesting Hacker Rank problem was the update list problem. We just want to update the values of a given collection with their absolute values.

另一个有趣的Hacker Rank问题是更新列表问题 。 我们只想用它们的绝对值更新给定集合的值。

For example, the input [1 2 3 -4 5]needs the output to be [1 2 3 4 5]. The absolute value of -4 is 4.

例如,输入[1 2 3 -4 5]需要输出为[1 2 3 4 5]-4的绝对值为4

A simple solution would be an in-place update for each collection value.

一个简单的解决方案是就每个集合值进行就地更新。

We use the Math.abs function to transform the value into its absolute value, and do the in-place update.

我们使用Math.abs函数将值转换为其绝对值,并进行就地更新。

This is not a functional way to implement this solution.

不是实现此解决方案的功能方法。

First, we learned about immutability. We know how immutability is important to make our functions more consistent and predictable. The idea is to build a new collection with all absolute values.

首先,我们了解了不变性。 我们知道不变性对于使我们的功能更加一致和可预测是多么重要。 这个想法是建立一个具有所有绝对值的新集合。

Second, why not use map here to "transform" all data?

其次,为什么不使用map来“转换”所有数据?

My first idea was to build a to-absolute function to handle only one value.

我的第一个想法是建立一个to-absolute函数仅处理一个值。

If it is negative, we want to transform it in a positive value (the absolute value). Otherwise, we don’t need to transform it.

如果它是负数,我们希望将其转换为正值(绝对值)。 否则,我们不需要对其进行转换。

Now that we know how to do absolute for one value, we can use this function to pass as an argument to the map function. Do you remember that a higher order function can receive a function as an argument and use it? Yes, map can do it!

现在我们知道如何对一个值进行absolute运算,我们可以使用此函数作为参数传递给map函数。 您还记得higher order function可以将函数作为参数来使用吗? 是的,地图可以做到!

Wow. So beautiful! ?

哇。 如此美丽! ?

减少 (Reduce)

The idea of reduce is to receive a function and a collection, and return a value created by combining the items.

reduce的想法是接收一个函数和一个集合,并返回通过组合项目创建的值。

A common example people talk about is to get the total amount of an order. Imagine you were at a shopping website. You’ve added Product 1, Product 2, Product 3, and Product 4 to your shopping cart (order). Now we want to calculate the total amount of the shopping cart.

人们谈论的一个常见示例是获取订单的总金额。 想象一下您在一个购物网站上。 您已将Product 1Product 2Product 3Product 4到购物车(订单)。 现在,我们要计算购物车的总金额。

In imperative way, we would iterate the order list and sum each product amount to the total amount.

以必要的方式,我们将迭代订单清单,并将每个产品的数量加到总数量上。

Using reduce, we can build a function to handle the amount sum and pass it as an argument to the reduce function.

使用reduce ,我们可以构建一个函数来处理amount sum并将其作为参数传递给reduce函数。

Here we have shopping-cart, the function sum-amount that receives the current total-amount , and the current-product object to sum them.

在这里,我们有shopping-cart ,接收当前total-amount的功能sum-amount和将它们sumcurrent-product对象。

The get-total-amount function is used to reduce the shopping-cart by using the sum-amount and starting from 0.

使用sum-amount并从0开始使用get-total-amount功能来reduce shopping-cart

Another way to get the total amount is to compose map and reduce. What do I mean by that? We can use map to transform the shopping-cart into a collection of amount values, and then just use the reduce function with + function.

获取总量的另一种方法是mapreduce 。 那是什么意思 我们可以使用mapshopping-cart转换为amount值的集合,然后仅将reduce函数与+函数一起使用。

The get-amount receives the product object and returns only the amount value. So what we have here is [10 30 20 60]. And then the reduce combines all items by adding up. Beautiful!

get-amount接收产品对象并仅返回amount值。 所以我们这里是[10 30 20 60] 。 然后reduce将所有项目相加在一起。 美丽!

We took a look at how each higher-order function works. I want to show you an example of how we can compose all three functions in a simple example.

我们研究了每个高阶函数的工作方式。 我想向您展示一个示例,说明如何在一个简单的示例中组合所有三个函数。

Talking about shopping cart, imagine we have this list of products in our order:

谈论shopping cart ,想象一下我们的订单中有以下产品清单:

We want the total amount of all books in our shopping cart. Simple as that. The algorithm?

我们需要购物车中所有书籍的总数。 就那么简单。 算法?

  • filter by book type

    按书籍类型过滤

  • transform the shopping cart into a collection of amount using map

    使用地图将购物车转化为金额集合

  • combine all items by adding them up with reduce

    通过将所有项目与reduce相加来合并

Done! ?

做完了! ?

资源资源 (Resources)

I’ve organised some resources I read and studied. I’m sharing the ones that I found really interesting. For more resources, visit my Functional Programming Github repository.

我整理了一些阅读和学习的资源。 我正在分享我发现非常有趣的内容。 有关更多资源,请访问我的Functional Programming Github存储库

简介 (Intros)
纯功能 (Pure functions)
不变的数据 (Immutable data)
高阶函数 (Higher-order functions)
声明式编程 (Declarative Programming)

而已! (That’s it!)

Hey people, I hope you had fun reading this post, and I hope you learned a lot here! This was my attempt to share what I’m learning.

大家好,我希望您在阅读这篇文章时玩得开心,希望您在这里学到了很多东西! 这是我分享我所学内容的尝试。

Here is the repository with all codes from this article.

这是本文中所有代码的存储库

Come learn with me. I’m sharing resources and my code in this Learning Functional Programming repository.

来跟我学习。 我正在这个“ 学习功能编程”存储库中共享资源和代码。

I hope you saw something useful to you here. And see you next time! :)

希望您在这里看到了对您有用的东西。 下次见! :)

My Twitter & Github. ☺

我的TwitterGithub 。 ☺

TK.

TK。

翻译自: https://www.freecodecamp.org/news/an-introduction-to-the-basic-principles-of-functional-programming-a2c2a15c84/

响应式编程 函数式编程

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值