Skip to content

Commit 784467c

Browse files
authored
Merge pull request Snailclimb#1100 from OnePieceJoker/patch-1
fix: 错字修复
2 parents e26bb6f + 58aa6a4 commit 784467c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/new-features/Java8新特性总结.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Formula formula = (a) -> sqrt(a * 100);
283283

284284
### 内置函数式接口(Built-in Functional Interfaces)
285285

286-
JDK 1.8 API包含许多内置函数式接口。 其中一些借口在老版本的 Java 中是比较常见的比如: `Comparator``Runnable`,这些接口都增加了`@FunctionalInterface`注解以便能用在 lambda 表达式上。
286+
JDK 1.8 API包含许多内置函数式接口。 其中一些接口在老版本的 Java 中是比较常见的比如: `Comparator``Runnable`,这些接口都增加了`@FunctionalInterface`注解以便能用在 lambda 表达式上。
287287

288288
但是 Java 8 API 同样还提供了很多全新的函数式接口来让你的编程工作更加方便,有一些接口是来自 [Google Guava](https://code.google.com/p/guava-libraries/) 库里的,即便你对这些很熟悉了,还是有必要看看这些是如何扩展到lambda上使用的。
289289

0 commit comments

Comments
 (0)