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

修复包命名反例

This commit is contained in:
VinterHe 2021-07-12 11:50:06 +08:00 committed by GitHub
parent ad786cd070
commit aefa2ccf24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ void shouldGet200StatusCodoWhenRequestIsValid() {
正例: `org.apache.dubbo.common.threadlocal`
反例: ~~`org.apache.dubbo.common.threadLocal`~~
反例: ~~`org.apache_dubbo.Common.threadLocals`~~
**5.抽象类命名使用 Abstract 开头**。