From f748cfd355ef19825846b383a025175f73832c0e Mon Sep 17 00:00:00 2001 From: SnailClimb Date: Fri, 22 Mar 2019 09:51:36 +0800 Subject: [PATCH] =?UTF-8?q?Add=20=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Java/Basis/Arrays,CollectionsCommonMethods.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Java/Basis/Arrays,CollectionsCommonMethods.md b/Java/Basis/Arrays,CollectionsCommonMethods.md index 492b656d..140b6f05 100644 --- a/Java/Basis/Arrays,CollectionsCommonMethods.md +++ b/Java/Basis/Arrays,CollectionsCommonMethods.md @@ -1,3 +1,20 @@ + + +- [Collections 工具类和 Arrays 工具类常见方法](#collections-工具类和-arrays-工具类常见方法) + - [Collections](#collections) + - [排序操作](#排序操作) + - [查找,替换操作](#查找替换操作) + - [同步控制](#同步控制) + - [Arrays类的常见操作](#arrays类的常见操作) + - [排序 : `sort()`](#排序--sort) + - [查找 : `binarySearch()`](#查找--binarysearch) + - [比较: `equals()`](#比较-equals) + - [填充 : `fill()`](#填充--fill) + - [转列表 `asList()`](#转列表-aslist) + - [转字符串 `toString()`](#转字符串-tostring) + - [复制 `copyOf()`](#复制-copyof) + + # Collections 工具类和 Arrays 工具类常见方法 ## Collections