From 2fd210693890d90522c6a6d41e62eff0cbffa341 Mon Sep 17 00:00:00 2001 From: Jiawei <34996463+zeason@users.noreply.github.com> Date: Mon, 17 Sep 2018 17:12:28 +0900 Subject: [PATCH] =?UTF-8?q?Update=20final=E3=80=81static=E3=80=81this?= =?UTF-8?q?=E3=80=81super.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正错别字 --- Java相关/final、static、this、super.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Java相关/final、static、this、super.md b/Java相关/final、static、this、super.md index cf6a0946..d891cc33 100644 --- a/Java相关/final、static、this、super.md +++ b/Java相关/final、static、this、super.md @@ -69,7 +69,7 @@ public class Sub extends Super { **使用 this 和 super 要注意的问题:** -- super 调用父类中的其他构造方法时,调用时要放在构造方法的首行!this 调用奔雷中的其他构造方法时,也要放在首行。 +- super 调用父类中的其他构造方法时,调用时要放在构造方法的首行!this 调用本类中的其他构造方法时,也要放在首行。 - this、super不能用在static方法中。 **简单解释一下:**