From 2f081329599f1fe09e7873826c86119e16ab7fee Mon Sep 17 00:00:00 2001 From: winsonrich <42903383+winsonrich@users.noreply.github.com> Date: Tue, 23 Oct 2018 16:18:53 +0800 Subject: [PATCH] Update index.md --- guide/chinese/java/inheritance/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/chinese/java/inheritance/index.md b/guide/chinese/java/inheritance/index.md index 9fc15b18c1..6a04f91878 100644 --- a/guide/chinese/java/inheritance/index.md +++ b/guide/chinese/java/inheritance/index.md @@ -1,8 +1,8 @@ --- title: Inheritance -localeTitle: 遗产 +localeTitle: 继承 --- -# 遗产 +# 继承 Java继承是指Java类从其他类`inherit`属性的能力。可以把它想象成一个从父母那里继承属性的孩子,这个概念非常相似。在Java lingo中,它也被称为_扩展_类。一些简单的事情要记住: @@ -189,4 +189,4 @@ public class Vehicle { 如果没有定义其他构造函数,那么Java将调用默认的超类构造函数( _即使未明确定义_ )。 -恭喜,现在你对继承了解一切!阅读有关在Abstract Classes和[Interfaces中](//forum.freecodecamp.com/t/java-docs-interfaces)继承事物的高级方法的更多信息! \ No newline at end of file +恭喜,现在你对继承了解一切!阅读有关在Abstract Classes和[Interfaces中](//forum.freecodecamp.com/t/java-docs-interfaces)继承事物的高级方法的更多信息!