1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Update java-basic-questions-01.md

增加了“@Override”重写注解,提高可读性
This commit is contained in:
玘珞 2024-06-26 22:58:21 +08:00 committed by GitHub
parent a955c64542
commit 0118be879c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -977,6 +977,7 @@ public class SuperMan extends Hero{
}
public class SuperSuperMan extends SuperMan {
@Override
public String name() {
return "超级超级英雄";
}