Skip to content

Commit

Permalink
Merge pull request hollischuang#157 from GaleLQ/master
Browse files Browse the repository at this point in the history
修复枚举关键字拼写错误
  • Loading branch information
hollischuang authored Aug 24, 2021
2 parents 4d977aa + a1cfbfc commit 69b712a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basics/java-basic/syntactic-sugar.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ Java SE5提供了一种新的类型-Java的枚举类型,关键字`enum`可以
}


通过反编译后代码我们可以看到,`public final class T extends Enum`,说明该类是继承了`Enum`类的同时`final`关键字告诉我们这个类也是不能被继承的。**当我们使用`enmu`来定义一个枚举类型的时候编译器会自动帮我们创建一个`final`类型的类继承`Enum`所以枚举类型不能被继承。**
通过反编译后代码我们可以看到,`public final class T extends Enum`,说明该类是继承了`Enum`类的同时`final`关键字告诉我们这个类也是不能被继承的。**当我们使用`enum`来定义一个枚举类型的时候编译器会自动帮我们创建一个`final`类型的类继承`Enum`所以枚举类型不能被继承。**

### 糖块六内部类

Expand Down

0 comments on commit 69b712a

Please sign in to comment.