From 6a625f324d1d91955ed19f6f45298192da0357bc Mon Sep 17 00:00:00 2001 From: boiler Date: Mon, 19 Jun 2017 11:41:06 +0800 Subject: [PATCH 1/5] translated --- TODO/gang-of-four-patterns-in-kotlin.md | 118 ++++++++++++------------ 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/TODO/gang-of-four-patterns-in-kotlin.md b/TODO/gang-of-four-patterns-in-kotlin.md index 3118eb9c1f0..d120b0df258 100644 --- a/TODO/gang-of-four-patterns-in-kotlin.md +++ b/TODO/gang-of-four-patterns-in-kotlin.md @@ -1,34 +1,34 @@ > * 原文地址:[Gang of Four Patterns in Kotlin](https://dev.to/lovis/gang-of-four-patterns-in-kotlin) > * 原文作者:[Lovis](https://dev.to/lovis) > * 译文出自:[掘金翻译计划](https://github.com/xitu/gold-miner) -> * 译者: +> * 译者:[Boiler Yao](https://github.com/boileryao) > * 校对者: -Kotlin is getting more and more relevant. How would common design patterns implemented in Kotlin look like? +Kotlin 正在得到越来越广泛的应用。如果把常用的设计模式用 Kotlin 来实现会是什么样子呢? -Inspired by Mario Fusco's [Talk](https://www.youtube.com/watch?v=Rmer37g9AZM)/[Blog posts](https://www.voxxed.com/blog/2016/04/gang-four-patterns-functional-light-part-1/)/[Repository](https://github.com/mariofusco/from-gof-to-lambda) "From GoF to lambda", I decided to implement some of the most famous design patterns in computer science in Kotlin! +受到 Mario Fusco 的“从‘四人帮’到 lambda”(相关的[视频](https://www.youtube.com/watch?v=Rmer37g9AZM)、[博客](https://www.voxxed.com/blog/2016/04/gang-four-patterns-functional-light-part-1/)、[代码](https://github.com/mariofusco/from-gof-to-lambda))的启发,我决定动手实现一些计算机科学领域最著名的设计模式,用 Kotlin!(“四人帮”指 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides,四人在所著的《Design Patterns: Elements of Reusable Object-Oriented Software 》一书中介绍了 23 种设计模式,该书被誉为设计模式的经典之作。——译注) -The goal is not to simply *implement* the patterns, though. Since Kotlin supports object oriented programming and is interoperable with Java, I could just copy-auto-convert every java class in Mario's repository (doesn't matter whether it's the "traditional" or the "lambda" examples) and **it would still work!** +当然,我的目标不是简单的 **实现** 这些模式。因为 Kotlin 支持面向对象编程并且和 Java 是可互操作的,我可以从 Mario 的仓库直接复制粘贴每一个 Java 文件(先不管是“传统”的还是“lambada 风格”的),**它们将仍然可以正常工作**! -It's also important to note that these patterns where discovered to overcome the shortcomings of how imperative programming languages were designed in the 90s (C++ in particular). Many modern languages provide features to overcome these issues without writing extra code or falling back to patterns. +认识到这些模式的发明是为了弥补起源于上世纪九十年代的一些命令式编程语言(尤其是 C++)的不足是很重要的。很多现代编程语言提供了解决这些不足的特性,我们完全不需要再写多余的代码或者做刻意模仿设计模式这种事了。 -That's why —just like Mario in the `g ∘ f` repository— I will try to find a simpler, easier or more idiomatic way to solve the same problem each pattern is solving. +这就是为什么我像 Mario 那样,去寻找一种简单方便、惯用的方式来解决这些模式所要解决的问题。 -If you don't like reading explanations, you can directly jump to my [github repository](https://github.com/lmller/gof-in-kotlin) +如果不想看下面这坨文字的话,你可以直接去 [这个 GitHub 仓库](https://github.com/lmller/gof-in-kotlin) 看代码。 --- -As you might know, there are three types of (gof) patterns: **structural**, **creational** and **behavioral** patterns. +众所周知,根据“四人帮”的定义设计模式可以分为三种: **结构型**、**创建型 **和 **行为型**。 -First up are the structural patterns. This is tough, because structural patterns are about - structure! How could I implement a structure with a *different* structure? I can't. An exception is the **Decorator**. While it's technically just about structure, its usage is more about behavior or responsibilities. + 一开始,我们先来看结构型设计模式。这不是很好搞,因为结构型设计模式是关于结构的。怎样用一个 **不同** 的结构来实现另一个结构呢,臣妾做不到啊。不过, **装饰器模式 **是个例外。虽然在技术层面来说是结构型,但就使用来说,更像多个职责构成的行为型设计模式(装饰器模式,每个负责进行包装的类具有增加某一行为这一职责。——译注)。 -### Structural Patterns +### 结构型设计模式 -#### Decorator +#### 装饰器模式(Decorator) -> Attach additional responsibilities to an object dynamically +> 动态地给对象添加行为(职责) -Let's say I want to decorate a class `Text` with some text effects: +假设我们想用一些特效(duang)来装饰 `Text` 这个类: ``` class Text(val text: String) { @@ -36,9 +36,9 @@ class Text(val text: String) { } ``` -If you know the pattern, you also know that a set of classes has to be created in order to "decorate" (that is extending the behavior) the `Text` class. +如果了解这个模式的话,你应该知道我们需要创建一些类来“修饰”(即,拓展行 为) `Text` 类。 -These extra classes can be avoided in Kotlin by using *extension functions*: +在 Kotlin 中,我们可以用 **函数拓展(extension functions)** 来避免创建这么一坨类: ``` fun Text.underline(decorated: Text.() -> Unit) { @@ -54,7 +54,7 @@ fun Text.background(decorated: Text.() -> Unit) { } ``` -With these extension functions, I can now create a new `Text` and decorate its `draw` method without creating other classes: +有了这些拓展函数,我们现在可以实例化一个 `Text` 对象,并且在不创建其他类的情况下来修饰它的 `draw` 方法: ``` Text("Hello").run { @@ -66,11 +66,11 @@ Text("Hello").run { } ``` -If you run this from the command line, you will see the text "_Hello_" with colored background (if your terminal supports ansi colors). +运行这段代码,你会看见带有彩色背景的“\_Hello\_”(如果终端支持 ansi 颜色的话)。 -Compared to the original Decorator pattern, there is one drawback: I can not pass "pre-decorated" objects around, since there is no Decorator class anymore. +跟原本的装饰者相比,这里有一个不足:由于没有用来装饰的类了,所以我们不能使用“预装饰”过的对象了。 -To solve this I can use functions again. Functions are first-class citizens in Kotlin, so I can pass those around instead. +可以再次使用函数来解决这个问题,函数是 Kotlin 中的“一等公民”。我们可以这样写: ``` fun preDecorated(decorated: Text.() -> Unit): Text.() -> Unit { @@ -78,15 +78,15 @@ fun preDecorated(decorated: Text.() -> Unit): Text.() -> Unit { } ``` -### Creational +### 创建型设计模式 -#### Builder +#### Builder 模式 -> Separate the construction of a complex object from its representation so that the same construction process can create different representations +> 将复杂对象的构造与其表示分开,以便相同的构造过程可以创建不同形式的对象 -The **Builder** pattern is really useful. I can avoid variable-heavy constructors and easily re-use predefined setups. Kotlin supports this pattern out of the box with the `apply` extension function. +**Builder** 模式很好用,可以避免臃肿的构造函数参数列表,还能方便地复用预先定义好的配置对象的代码。 Kotlin 的 `apply` 扩展原生支持 Builder 模式。 -Consider a class `Car`: +假设有一个 `Car` 类: ``` class Car() { @@ -95,7 +95,7 @@ class Car() { } ``` -Instead of creating a separate `CarBuilder` for this class, I can now use the `apply` (`also` works as well) extension to initialize the car: +除了为这个类单独创建一个 `CarBuilder` ,我们可以使用 `apply`(`also` 也行)拓展来初始化一辆车: ``` Car().apply { @@ -104,17 +104,17 @@ Car().apply { } ``` -Since functions can be stored in a variable, this initialization could also be stored in a variable. This way, I can have pre-configured **Builder**-functions, e.g. `val yellowCar: Car.() -> Unit = { color = "yellow" }` +由于函数可以赋值给一个变量,所以这个初始化过程也可以放在一个变量里。这样,我们就有了一个预先定义好的 **Builder** “函数”,比如 `val yellowCar: Car.() -> Unit = { color = "yellow" }` -#### Prototype +#### 原型模式(Prototype) -> Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype +> 使用原型化的实例指定要创建的对象的种类,并通过复制此实例来创建特定的新对象 -In Java, prototyping could theoretically be implemented using the `Cloneable` interface and `Object.clone()`. However, [`clone` is broken](http://www.artima.com/intv/bloch13.html), so we should avoid it. +在 Java 中,原型模式理论上可以用 `Cloneable` 接口和 `Object.clone()` 来实现。然而,[`clone` 有很大的不足](http://www.artima.com/intv/bloch13.html),所以我们应该避免使用它。 -Kotlin fixes this with data classes. +Kotlin 用数据类(data classes)提供了解决方案。 -When I use data classes, I get `equals`, `hashCode`, `toString` and `copy` for free. By using `copy`, it's possible to clone the whole object and optionally change some of the new object's properties. +当使用数据类的时候,我们将免费得到 `equals`、`hashCode`、`toString` 和 `copy` 这几个函数。通过 `copy`,我们可以复制一整个对象并且修改所得到的新对象的一些属性。 ``` data class EMail(var recipient: String, var subject: String?, var message: String?) @@ -128,13 +128,13 @@ println("Email1 goes to " + mail.recipient + " with subject " + mail.subject) println("Email2 goes to " + copy.recipient + " with subject " + copy.subject) ``` -#### Singleton +#### 单例模式(Singleton) -> Ensure a class only has one instance, and provide a global point of access to it +> 确保一个类只有一个实例,并提供这个实例的全局访问点 -Although the **Singleton** is considered an anti-pattern these days, it has its usages (I won't discuss this topic here, just use it with caution). +尽管近来 **单例模式** 被认为是“反设计模式的”,但是它也有自己独特的用处(本文不会讨论这个话题,只是战战克克克克的来用它)。 -Creating a **Singleton** in Java needs a lot of ceremony, but Kotlin makes it easy with *`object` declarations*. +在 Java 中创建 **单例** 还是需要一番操作的,但是在 Kotlin 中只需要简单的使用 **`object` ** 声明就可以了。 ``` object Dictionary { @@ -148,9 +148,9 @@ object Dictionary { } ``` -Using the `object` keyword here will automatically create a class `Dictionary` and a single instance of it. The instance is created lazily, so it's not created until it is actually used. +这里使用的 `object` 关键词会自动创建出 `Dictionary` 这个类以及它的一个单例。这个单例以“懒汉模式”创建,用到它时才会进行创建。 -The object is accessed like static functions in java: +单例的访问方式和 Java 的静态方法差不多: ``` val word = "kotlin" @@ -158,13 +158,13 @@ Dictionary.addDefinition(word, "an awesome programming language created by JetBr println(word + " is " + Dictionary.getDefinition(word)) ``` -### Behavioral +### 行为型设计模式 -#### Template Method +#### 模板方法(Template Method) -> Define the skeleton of an algorithm in an operation, deferring some steps to subclasses +> 在操作中定义算法(步骤)的骨架,将一些步骤委托给子类 -This pattern makes use of class hierarchies as well. You define an `abstract` method and call it somewhere inside the base class. The implementation is handled by the subclasses. +这个设计模式同时用到了类的继承。定义一些 `抽象方法` 并且在基类调用这些方法。抽象方法由子类负责实现。 ``` //java @@ -178,9 +178,9 @@ public abstract class Task { } ``` -I could now derive a concrete `Task`, that actually does something in `work`. +现在从 `Task` 派生出一个在 `work` 方法中真正做了事情的具体类。 -Similar to how the **Decorator** example uses extension functions, my **Template Method** approach uses a top-level function. +和 **装饰器模式** 使用函数拓展类似,这里的 **模板方法** 通过顶层函数实现。 ``` //kotlin @@ -197,13 +197,13 @@ execute { } ``` -As you can see, there is no need to have a class at all! One could argue, that this now resembles the **Strategy** pattern, which is probably correct. But then again, **Strategy** and **Template Method** are solving very similar problems (if not the same). +看,根本没有必要写一个类!有人可能会有疑问,这不是 **策略模式** 吗,这个疑问不无道理。从另一方面来看,**策略模式** 和 **模板方法** 确实在解决很相似的问题(如果有什么不同)。 -#### Strategy +#### 策略模式(Strategy) -> Define a family of algorithms, encapsulate each one, and make them interchangeable +> 定义一系列算法,封装每个算法,并使它们可以互换 -Let's say I have a `Customer` that pays a certain fee per month. This fee can be discounted. Instead of having a subclass of `Customer` for each discounting-*strategy*, I use the **Strategy** pattern. +有一些 `Customer` ,他们每个月都要付一笔特定的费用。对于某些特定的人,这笔费用可以打折。我们不去为每种打折 **策略** 都去写一个对应的 `Customer` 子类,而是采用 **策略模式**。 ``` class Customer(val name: String, val fee: Double, val discount: (Double) -> Double) { @@ -213,9 +213,9 @@ class Customer(val name: String, val fee: Double, val discount: (Double) -> Doub } ``` -Notice that I'm using a function `(Double) -> Double` instead of an interface for the strategy. To make this more domain-specific, I could also declare a type alias, without losing the flexibility of an higher-order-function: `typealias Discount = (Double) -> Double`. +注意这里没有使用接口,而是使用 `(Double) -> Double` (Double 到 Double)的函数来替代。为了使这个变换看上去有意义,我们可以声明一个类型别名,这样也不失高阶函数的灵活性: `typealias Discount = (Double) -> Double`. -Either way, I can define multiple strategies for calculating the discount. +无论哪种方式,我都可以定义多种 **策略** 来计算折扣。 ``` val studentDiscount = { fee: Double -> fee/2 } @@ -229,13 +229,13 @@ println("${student.name} pays %.2f per month".format(student.pricePerMonth())) println("${regular.name} pays %.2f per month".format(regular.pricePerMonth())) ``` -#### Iterator +#### 迭代器模式(Iterator) -> Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation. +> 提供了一种在不暴露其底层表示的情况下顺序访问聚合对象内部元素的方法 -Writing an **Iterator** is a rare task. Most of the time, it's easier and more convenient to wrap a `List` and implement the `Iterable` interface. +很难遇到手搓一个 **迭代器** 的情况。大多数情况,包装一个 `List` 并且实现 `Iterable`接口要更简单方便。 -In Kotlin, `iterator()` is an operator function. This means that when a class defines a function `operator fun iterator()`, it can be iterated using a `for` loop (no interface needed). That's particularly cool because it works also with extension functions. That's right - by using an extension function, I can make *every* object iterable. Consider this example: +在 Kotlin 中, `iterator()` 是个操作符函数。这意味着当一个类定义了 `operator fun iterator()` 这个函数后,可以使用 `for` 循环来遍历它(不需要声明接口)。这个函数也能通过拓展函数配合使用,这是很酷炫的。 通过拓展函数,我们可以让 **每一个** 对象都是可迭代的。看下面这个例子: ``` class Sentence(val words: List) @@ -243,19 +243,19 @@ class Sentence(val words: List) operator fun Sentence.iterator(): Iterator = words.iterator() ``` -I can now iterate over a `Sentence`. This also works if I'm not the owner of the class. +现在我们可以在 `Sentence` 上进行迭代操作了。如果没有这个类的控制权的话,迭代器仍然将正常工作。 -### More patterns +### 更多的模式…… -I mentioned a few patterns, but those are not all *Gang of Four* patterns. As I said in the introduction, especially the structural patterns are hard or impossible to write in a different way than in Java. [Some other patterns can be found in the repository](https://github.com/lmller/gof-in-kotlin). I'm open for feedback and pull-requests ☺. +这篇文章确实提到了相当几个设计模式,但这不是 **“四人帮”** 设计模式的全部。就像我在一开始提到的那样,尤其是结构型设计模式很难甚至根本不可能用和 Java 不同的方法来实现。 你可以在 [这个代码仓库](https://github.com/lmller/gof-in-kotlin) 找到更多的设计模式。欢迎来提交反馈和 PR。☺ -I hope this post gave you an idea on how Kotlin can result in different approaches to well known problems. +希望这篇文章能给你些启发,让你对于 Kotlin 为广为人知的问题带来的新解决方案有自己的认识。 -One last thing I want to mention is, that the java-to-kotlin ratio in the repository is ~⅓ Kotlin and ~⅔ Java, although both versions do the same thing 🙃 +最后我想说的是,仓库中的代码量大概有 ⅓ 的 Kotlin 和 ⅔ 的 Java,虽然这两部分代码干了同样的事情🙃 --- -The cover image was taken from [stocksnap.io](stocksnap.io) +封面图片来自 [stocksnap.io](stocksnap.io) --- From 76f7d413d66b5b35dde397eb05748f3bb008bbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=94=85=E7=82=89=E5=B7=A5?= Date: Tue, 20 Jun 2017 00:18:04 +0800 Subject: [PATCH 2/5] update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 进行了一些修改,感谢指正。 --- TODO/gang-of-four-patterns-in-kotlin.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/TODO/gang-of-four-patterns-in-kotlin.md b/TODO/gang-of-four-patterns-in-kotlin.md index d120b0df258..f32cb5e88cc 100644 --- a/TODO/gang-of-four-patterns-in-kotlin.md +++ b/TODO/gang-of-four-patterns-in-kotlin.md @@ -6,21 +6,21 @@ Kotlin 正在得到越来越广泛的应用。如果把常用的设计模式用 Kotlin 来实现会是什么样子呢? -受到 Mario Fusco 的“从‘四人帮’到 lambda”(相关的[视频](https://www.youtube.com/watch?v=Rmer37g9AZM)、[博客](https://www.voxxed.com/blog/2016/04/gang-four-patterns-functional-light-part-1/)、[代码](https://github.com/mariofusco/from-gof-to-lambda))的启发,我决定动手实现一些计算机科学领域最著名的设计模式,用 Kotlin!(“四人帮”指 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides,四人在所著的《Design Patterns: Elements of Reusable Object-Oriented Software 》一书中介绍了 23 种设计模式,该书被誉为设计模式的经典之作。——译注) +受到 Mario Fusco 的“从‘四人帮’到 lambda”(相关的[视频](https://www.youtube.com/watch?v=Rmer37g9AZM)、[博客](https://www.voxxed.com/blog/2016/04/gang-four-patterns-functional-light-part-1/)、[代码](https://github.com/mariofusco/from-gof-to-lambda))的启发,我决定动手实现一些计算机科学领域最著名的设计模式,用 “Kotlin”!(“四人帮”指 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides,四人在所著的《Design Patterns: Elements of Reusable Object-Oriented Software 》一书中介绍了 23 种设计模式,该书被誉为设计模式的经典之作。——译注) 当然,我的目标不是简单的 **实现** 这些模式。因为 Kotlin 支持面向对象编程并且和 Java 是可互操作的,我可以从 Mario 的仓库直接复制粘贴每一个 Java 文件(先不管是“传统”的还是“lambada 风格”的),**它们将仍然可以正常工作**! -认识到这些模式的发明是为了弥补起源于上世纪九十年代的一些命令式编程语言(尤其是 C++)的不足是很重要的。很多现代编程语言提供了解决这些不足的特性,我们完全不需要再写多余的代码或者做刻意模仿设计模式这种事了。 +需要特别说明一下,这些模式的发明是为了弥补起源于上世纪九十年代的一些命令式编程语言(尤其是 C++)的不足。很多现代编程语言提供了解决这些不足的特性,我们完全不需要再写多余的代码或者做刻意模仿设计模式这种事了。 -这就是为什么我像 Mario 那样,去寻找一种简单方便、惯用的方式来解决这些模式所要解决的问题。 +这就是为什么我像 Mario 那样,去寻找一种更简单方便、更惯用的方式来解决这些模式所要解决的问题。 -如果不想看下面这坨文字的话,你可以直接去 [这个 GitHub 仓库](https://github.com/lmller/gof-in-kotlin) 看代码。 +如果不想看下面这坨说明文字的话,你可以直接去 [这个 GitHub 仓库](https://github.com/lmller/gof-in-kotlin) 看代码。 --- 众所周知,根据“四人帮”的定义设计模式可以分为三种: **结构型**、**创建型 **和 **行为型**。 - 一开始,我们先来看结构型设计模式。这不是很好搞,因为结构型设计模式是关于结构的。怎样用一个 **不同** 的结构来实现另一个结构呢,臣妾做不到啊。不过, **装饰器模式 **是个例外。虽然在技术层面来说是结构型,但就使用来说,更像多个职责构成的行为型设计模式(装饰器模式,每个负责进行包装的类具有增加某一行为这一职责。——译注)。 + 一开始,我们先来看结构型设计模式。这不是很好搞,因为结构型设计模式是关于结构的。怎样用一个 **不同** 的结构来实现这个结构呢,臣妾做不到啊。不过, **装饰器模式 **是个例外。虽然在技术层面来说算是结构型,但就使用来说,更多是和行为及职责有关的(装饰器模式,每个负责进行包装的类具有增加某一行为这一职责。——译注)。 ### 结构型设计模式 @@ -38,7 +38,7 @@ class Text(val text: String) { 如果了解这个模式的话,你应该知道我们需要创建一些类来“修饰”(即,拓展行 为) `Text` 类。 -在 Kotlin 中,我们可以用 **函数拓展(extension functions)** 来避免创建这么一坨类: +在 Kotlin 中,我们可以用 **函数拓展(extension functions)** 来避免创建这么一大坨类: ``` fun Text.underline(decorated: Text.() -> Unit) { @@ -132,7 +132,7 @@ println("Email2 goes to " + copy.recipient + " with subject " + copy.subject) > 确保一个类只有一个实例,并提供这个实例的全局访问点 -尽管近来 **单例模式** 被认为是“反设计模式的”,但是它也有自己独特的用处(本文不会讨论这个话题,只是战战克克克克的来用它)。 +尽管近来 **单例模式** 被认为是“反设计模式的”,但是它也有自己独特的用处(本文不会讨论这个话题,只是战战克克克克的来使用它)。 在 Java 中创建 **单例** 还是需要一番操作的,但是在 Kotlin 中只需要简单的使用 **`object` ** 声明就可以了。 @@ -197,7 +197,7 @@ execute { } ``` -看,根本没有必要写一个类!有人可能会有疑问,这不是 **策略模式** 吗,这个疑问不无道理。从另一方面来看,**策略模式** 和 **模板方法** 确实在解决很相似的问题(如果有什么不同)。 +看,根本没有必要写任何类!有人可能会有疑问,这不是 **策略模式** 吗,这个疑问不无道理。从另一方面来看,**策略模式** 和 **模板方法** 确实在解决很相似的问题(如果有什么不同)。 #### 策略模式(Strategy) @@ -233,7 +233,7 @@ println("${regular.name} pays %.2f per month".format(regular.pricePerMonth())) > 提供了一种在不暴露其底层表示的情况下顺序访问聚合对象内部元素的方法 -很难遇到手搓一个 **迭代器** 的情况。大多数情况,包装一个 `List` 并且实现 `Iterable`接口要更简单方便。 +其实很难遇到需要手搓一个 **迭代器** 的情况。大多数情况,包装一个 `List` 并且实现 `Iterable`接口要更简单方便。 在 Kotlin 中, `iterator()` 是个操作符函数。这意味着当一个类定义了 `operator fun iterator()` 这个函数后,可以使用 `for` 循环来遍历它(不需要声明接口)。这个函数也能通过拓展函数配合使用,这是很酷炫的。 通过拓展函数,我们可以让 **每一个** 对象都是可迭代的。看下面这个例子: @@ -249,7 +249,7 @@ operator fun Sentence.iterator(): Iterator = words.iterator() 这篇文章确实提到了相当几个设计模式,但这不是 **“四人帮”** 设计模式的全部。就像我在一开始提到的那样,尤其是结构型设计模式很难甚至根本不可能用和 Java 不同的方法来实现。 你可以在 [这个代码仓库](https://github.com/lmller/gof-in-kotlin) 找到更多的设计模式。欢迎来提交反馈和 PR。☺ -希望这篇文章能给你些启发,让你对于 Kotlin 为广为人知的问题带来的新解决方案有自己的认识。 +希望这篇文章能给你些启发,让你认识到 Kotlin 可以为广为人知的问题带来的新的解决方案。 最后我想说的是,仓库中的代码量大概有 ⅓ 的 Kotlin 和 ⅔ 的 Java,虽然这两部分代码干了同样的事情🙃 From 78f0145da4d9be475db09569a90d990fb202625d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=94=85=E7=82=89=E5=B7=A5?= Date: Thu, 22 Jun 2017 10:24:03 +0800 Subject: [PATCH 3/5] update changed according to the advices, added passage info --- TODO/gang-of-four-patterns-in-kotlin.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TODO/gang-of-four-patterns-in-kotlin.md b/TODO/gang-of-four-patterns-in-kotlin.md index f32cb5e88cc..f0feaad8361 100644 --- a/TODO/gang-of-four-patterns-in-kotlin.md +++ b/TODO/gang-of-four-patterns-in-kotlin.md @@ -2,17 +2,17 @@ > * 原文作者:[Lovis](https://dev.to/lovis) > * 译文出自:[掘金翻译计划](https://github.com/xitu/gold-miner) > * 译者:[Boiler Yao](https://github.com/boileryao) -> * 校对者: +> * 校对者:[windmxf](https://github.com/windmxf), [wilsonandusa](https://github.com/wilsonandusa) Kotlin 正在得到越来越广泛的应用。如果把常用的设计模式用 Kotlin 来实现会是什么样子呢? 受到 Mario Fusco 的“从‘四人帮’到 lambda”(相关的[视频](https://www.youtube.com/watch?v=Rmer37g9AZM)、[博客](https://www.voxxed.com/blog/2016/04/gang-four-patterns-functional-light-part-1/)、[代码](https://github.com/mariofusco/from-gof-to-lambda))的启发,我决定动手实现一些计算机科学领域最著名的设计模式,用 “Kotlin”!(“四人帮”指 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides,四人在所著的《Design Patterns: Elements of Reusable Object-Oriented Software 》一书中介绍了 23 种设计模式,该书被誉为设计模式的经典之作。——译注) -当然,我的目标不是简单的 **实现** 这些模式。因为 Kotlin 支持面向对象编程并且和 Java 是可互操作的,我可以从 Mario 的仓库直接复制粘贴每一个 Java 文件(先不管是“传统”的还是“lambada 风格”的),**它们将仍然可以正常工作**! +当然,我的目标不是简单的 **实现** 这些模式。因为 Kotlin 支持面向对象编程并且和 Java 是可互操作的,我可以从 Mario 的仓库直接复制粘贴每一个 Java 文件(先不管是“传统”的还是“lambda 风格”的),**它们将仍然可以正常工作**! 需要特别说明一下,这些模式的发明是为了弥补起源于上世纪九十年代的一些命令式编程语言(尤其是 C++)的不足。很多现代编程语言提供了解决这些不足的特性,我们完全不需要再写多余的代码或者做刻意模仿设计模式这种事了。 -这就是为什么我像 Mario 那样,去寻找一种更简单方便、更惯用的方式来解决这些模式所要解决的问题。 +这就是为什么我像 Mario (相关仓库地址:[gof](https://github.com/mariofusco/from-gof-to-lambda))那样,去寻找一种更简单方便、更惯用的方式来解决这些模式所要解决的问题。 如果不想看下面这坨说明文字的话,你可以直接去 [这个 GitHub 仓库](https://github.com/lmller/gof-in-kotlin) 看代码。 From 5fcaa5da07f3f1cb6e9f23b7ed05e7dee9bcdcc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=94=85=E7=82=89=E5=B7=A5?= Date: Thu, 22 Jun 2017 12:53:51 +0800 Subject: [PATCH 4/5] modified a render failure --- TODO/gang-of-four-patterns-in-kotlin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO/gang-of-four-patterns-in-kotlin.md b/TODO/gang-of-four-patterns-in-kotlin.md index f0feaad8361..c2052f031ac 100644 --- a/TODO/gang-of-four-patterns-in-kotlin.md +++ b/TODO/gang-of-four-patterns-in-kotlin.md @@ -18,7 +18,7 @@ Kotlin 正在得到越来越广泛的应用。如果把常用的设计模式用 --- -众所周知,根据“四人帮”的定义设计模式可以分为三种: **结构型**、**创建型 **和 **行为型**。 +众所周知,根据“四人帮”的定义设计模式可以分为三种: **结构型**、**创建型** 和 **行为型**。 一开始,我们先来看结构型设计模式。这不是很好搞,因为结构型设计模式是关于结构的。怎样用一个 **不同** 的结构来实现这个结构呢,臣妾做不到啊。不过, **装饰器模式 **是个例外。虽然在技术层面来说算是结构型,但就使用来说,更多是和行为及职责有关的(装饰器模式,每个负责进行包装的类具有增加某一行为这一职责。——译注)。 From 2b80d66330da17821c49ff759f22cbbd5f777ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A0=B9=E5=8F=B7=E4=B8=89?= Date: Thu, 22 Jun 2017 20:12:07 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E4=B8=80?= =?UTF-8?q?=E4=B8=8B=20Markdown=20=E6=A0=87=E8=AE=B0=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TODO/gang-of-four-patterns-in-kotlin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO/gang-of-four-patterns-in-kotlin.md b/TODO/gang-of-four-patterns-in-kotlin.md index c2052f031ac..bebd57b67bf 100644 --- a/TODO/gang-of-four-patterns-in-kotlin.md +++ b/TODO/gang-of-four-patterns-in-kotlin.md @@ -20,7 +20,7 @@ Kotlin 正在得到越来越广泛的应用。如果把常用的设计模式用 众所周知,根据“四人帮”的定义设计模式可以分为三种: **结构型**、**创建型** 和 **行为型**。 - 一开始,我们先来看结构型设计模式。这不是很好搞,因为结构型设计模式是关于结构的。怎样用一个 **不同** 的结构来实现这个结构呢,臣妾做不到啊。不过, **装饰器模式 **是个例外。虽然在技术层面来说算是结构型,但就使用来说,更多是和行为及职责有关的(装饰器模式,每个负责进行包装的类具有增加某一行为这一职责。——译注)。 + 一开始,我们先来看结构型设计模式。这不是很好搞,因为结构型设计模式是关于结构的。怎样用一个 **不同** 的结构来实现这个结构呢,臣妾做不到啊。不过, **装饰器模式** 是个例外。虽然在技术层面来说算是结构型,但就使用来说,更多是和行为及职责有关的(装饰器模式,每个负责进行包装的类具有增加某一行为这一职责。——译注)。 ### 结构型设计模式 @@ -134,7 +134,7 @@ println("Email2 goes to " + copy.recipient + " with subject " + copy.subject) 尽管近来 **单例模式** 被认为是“反设计模式的”,但是它也有自己独特的用处(本文不会讨论这个话题,只是战战克克克克的来使用它)。 -在 Java 中创建 **单例** 还是需要一番操作的,但是在 Kotlin 中只需要简单的使用 **`object` ** 声明就可以了。 +在 Java 中创建 **单例** 还是需要一番操作的,但是在 Kotlin 中只需要简单的使用 **`object`** 声明就可以了。 ``` object Dictionary {