摘要:
CREATE USER hunan IDENTIFIED BY '123456'; 创建用户hunan GRANT ALL PRIVILEGES ON hunan.* TO 'hunan'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; 给用户hunan授 阅读全文
摘要:
public class ListStreamDemo{ public static void main(String[] args) { Integer[] arr = {1,1,3,7}; List<Integer> ints = Arrays.asList(arr); int max = in 阅读全文