求长度
数组是length
String、StringBuilder是length()
Map、List是size()
Arrays.sort(int[] nums) //对数组进行排序
Arrays.asList(int[] nums) //数组转换为List
String常用方法
//字符串中求单个字符内容使用charAt()函数
String s = "hello world";
for(int i; i< s.length(); i++)
s.charAt(i);
char[] str = s.toCharArray(); //字符串转换为字符数组
String res = new String(str); //字符数组转换为字符串
StringBuilder(对字符串进行修改)
StringBuilder str = new StringBuilder();
append() //添加字符串
toString() //转换为字符串
CharAt(i) //查看第i个字符内容
setCharAt(star,ch) //在位置star上设置内容为ch
Set常用方法
Set<Integer> set = new HashSet<>();
add() //添加元素
contains(n) //查看集合内是否有数字与n相同
Map常用方法
Map<Integer, Integer> map = new HashMap<>();
containsKey(temp) //查看map内是否与temp相对应的key值
get(temp) //获得temp对应的value值
put(key, value) //map内添加key value键值对
List常用方法
List<Integer> list = new ArrayList<>();
add() //添加元素