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

Merge pull request #1083 from LadyBugLC/master

Update Java常见关键字总结.md 修改文本错误
This commit is contained in:
Guide哥 2021-02-10 11:49:08 +08:00 committed by GitHub
commit b9417e79ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -233,7 +233,7 @@ public class Singleton {
//将Math中的所有静态资源导入这时候可以直接使用里面的静态方法而不用通过类名进行调用
//如果只想导入单一某个静态方法,只需要将换成对应的方法名即可
//如果只想导入单一某个静态方法,只需要将*换成对应的方法名即可
import static java.lang.Math.*;//换成import static java.lang.Math.max;具有一样的效果