上一页 1 2 3 4 5 6 7 8 ··· 27 下一页
摘要: //基本数据类型的比较 int num1 = 10; int num2 = 10; System.out.println(num1 == num2); //true //引用数据类型的比较 String s1 = "chance"; String s2 = "chance"; System.out. 阅读全文
posted @ 2022-02-18 10:10 11111ghm 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1、Region 区域化垃圾收集器:最大好处是化整为零,避免全内存扫描,只需要按照区域来进行扫描即可。 2、回收步骤: 3、四步过程: 初始标记:标记一下GC Roots能直接关联到的对象,需要停顿线程,但耗时很短 并发标记:是从GC Root开始对堆中对象进行可达性分析,找出存活的对象,这阶段耗时 阅读全文
posted @ 2022-02-17 18:26 11111ghm 阅读(32) 评论(0) 推荐(0) 编辑
摘要: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode() {} * ListNode(int val) { this.val = val; } 阅读全文
posted @ 2022-01-11 21:18 11111ghm 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 修改配置文件 select 1 from dual 改成 select 1 因为 dual是oracle公司的 阅读全文
posted @ 2022-01-07 21:49 11111ghm 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 一.将long型转化为int型,这里的long型是基础类型: long a = 10; int b = (int)a; 二.将Long型转换为int 型的,这里的Long型是包装类型: Long a = 10; int b=a.intValue(); 三.将int型转化为long型,这里的int型是 阅读全文
posted @ 2022-01-07 18:08 11111ghm 阅读(146) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_44515596/article/details/119906070 阅读全文
posted @ 2022-01-07 13:02 11111ghm 阅读(156) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/199496.htm 阅读全文
posted @ 2022-01-04 15:03 11111ghm 阅读(182) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1h7411v7pL?from=search&seid=2496975826224217109&spm_id_from=333.337.0.0 阅读全文
posted @ 2022-01-04 12:16 11111ghm 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-01-02 23:25 11111ghm 阅读(111) 评论(0) 推荐(0) 编辑
摘要: class Solution { List<List<Integer>> lists = new ArrayList<List<Integer>>(); LinkedList<Integer> list = new LinkedList<Integer>(); boolean[] used; pub 阅读全文
posted @ 2022-01-02 15:41 11111ghm 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 27 下一页