Map集合方法
package oop.jihe;
import java.util.*;
public class MapTest {
public static void main(String[] args) {
HashMap<String, String> map = new HashMap<>();
map.put("001","张三");
map.put("002","李四");
map.put("003","王五");
System.out.println(map.size());
boolean a = map.remove("001", "张三");
map.remove("张三");
map.replace("001","小二");
boolean b = map.containsKey("001");
boolean c = map.containsValue("小二");
//返回键的集合,集合类型为set 无序唯一
for (String s : map.keySet()) {
System.out.println(s);
}
//返回值的集合,集合类型为collection 无序可重复
for (String value : map.values()) {
System.out.println(value);
}
//返回条目的集合,集合类型为set 无序唯一
for (Map.Entry<String, String> entry : map.entrySet()) {
System.out.println(entry.getKey()+"---"+entry.getValue());
}
}
}
//Arrays.asList() 将数组转变成集合。
List<Integer> nums = Arrays.asList(5, 10, 8, 3, 10);
//Arrays.asList() 将数组转变成集合。
List<Integer> nums = Arrays.asList(5, 10, 8, 3, 10);
//通过Collection 中的sort方法可以对集合进行升序排序。
Collections.sort(nums);
//降序
Collections.sort(nums, Collections.reverseOrder());
for (Integer num : nums) {
System.out.println(num);
}
可变参数
package oop.jihe;
public class MapTest {
public static void main(String[] args) {
hehe("name",5, 10, 8, 3, 10);
}
//一个方法中只能有一个可变参数,且可变参数只能放在最后。
public static void hehe(String name, int... a) {
for (int i = 0; i < a.length; i++) {
System.out.println(a[i]);
}
}
}