https://blog.csdn.net/qq_41822345/article/details/107726413[https://blog...
https://www.cnblogs.com/EasonJim/p/7372846.html[https://www.cnblogs.com/...
你说你工资不高一定是因为工作不饱和,不饱和说明你代码写少了,写少了你怎么成长?我们待遇开的肯定比你之前高,而且我们有新人保护期,让你去成长,我们...
java.lang中: @Deprecated@FunctionalInterface@Override@SafeVarargs@Suppres...
newCachedThreadPool: 缓存线程池corePoolSize=0, maxinumPoolSize=+∞,队列长度=0 ,因此线...
算法 一、DFS46.全排列 https://leetcode.cn/problems/permutations/[https://leetc...
1、Arrays.asList()返回一个可变集合,List.of()返回一个不可变集合。 2、Arrays.asList()允许空元素,Lis...
1、Java规定类都要有一个构造方法,没有默认提供一个空参构造;2、构造方法不是用来实例化的,而是用来给属性初始化赋值的,抽象方法可以定义属性,...
1.判断是否相等?String s1 = "Hello";String s2 = "Hello";String s3 = "Hel" + "lo...