Skip to content

Commit

Permalink
[hotfix] Make sentence more fluent
Browse files Browse the repository at this point in the history
  • Loading branch information
yngwiewang authored Aug 10, 2019
1 parent 7def85e commit d507b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/book/10-Interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ Waveform 0

![类图](../images/1562999314238.png)

派生类并不要求必须继承自抽象的或“具体的”(没有任何抽象方法)的基类。如果继承一个非接口的类,那么只能从一个类继承,其余的基元素必须都是接口。需要将所有的接口名称置于 **implements** 关键字之后且用逗号分隔。可以有任意多个接口,并可以向上转型为每个接口,因为每个接口都是独立的类型。下例展示了一个由多个接口组合而成的具体类产生的新类:
派生类并不要求必须继承自抽象的或“具体的”(没有任何抽象方法)的基类。如果继承一个非接口的类,那么只能继承一个类,其余的基元素必须都是接口。需要将所有的接口名称置于 **implements** 关键字之后且用逗号分隔。可以有任意多个接口,并可以向上转型为每个接口,因为每个接口都是独立的类型。下例展示了一个由多个接口组合而成的具体类产生的新类:

```java
// interfaces/Adventure.java
Expand Down

0 comments on commit d507b1c

Please sign in to comment.