- 博客(3)
- 收藏
- 关注
原创 2020-08-11
Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception: java.sql.SQLException: No su
2020-08-11 17:10:40 129
转载 关于java集合类
一、集合框架的认识 对于集合框架的认识,为了防止时间久,而印象变得模糊,所以我自己是这样记得,这个方法以供参考吧,假定给定一个集合类,可以把他当成一个人,首先记住从哪里来(继承关系),然后有什么本事(底层的数据结构决定了特点),最后到哪里去(使用场景)。 根据上述的思路,先看一下来源(在这里先不说继承关系),Java集合是java提供的工具包,包含了常用的数据结构:集合、链表、队列、栈、数组、映射...
2020-04-17 11:36:25 135
原创 输入一个正数target,打印出所有和为target的连续正数序列(至少含有两个数)。例如输入15,由于1+2+3+4+5=4+5+6=7+8=15,所以结果打印出3个连续序列1~5、4~6和7~8。
public class Test_2 { public static void main(String[] arg){ Scanner input=new Scanner(System.in); int n=0; System.out.print(“输入target:”); int target=input.nextInt(); n=(target+1)/2; int[] nums=new in...
2020-03-06 17:14:06 652
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人