上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: CAS : Compare And Swap (比较与交换) CAS 操作包含三个操作数:内存位置(V)、预期原值(A)和新值(B) 当且仅当预期原值(A)与内存位置(V)的值相同时,才会将内存位置(V)的值更新为新值(B),否则不会更新值,不断循序重试; class AtomicInteger { 阅读全文
posted @ 2024-07-23 11:04 亲爱的阿道君 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 以下是上述 Java 常见八股文面试题的答案: JVM 相关: JVM 的内存区域划分是怎样的? 程序计数器、虚拟机栈、本地方法栈、堆、方法区 如何判断对象是否可以被回收? 引用计数法(存在循环引用问题) 可达性分析算法 主流方法(通过 GC Roots 对象作为起点,搜索引用链) 垃圾回收算法有哪 阅读全文
posted @ 2024-07-11 10:40 亲爱的阿道君 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://www.pppet.net/ 0 0/5 * * * ? 每5分钟执行一次 0 1/5 * * * ? 每5分钟执行一次, 从第1分钟开始 0 0 12 * * ? 每天中午12点触发 0 15 10 ? * * 每天上午10:15触发 0 15 10 * * ? 每天上午10:15 阅读全文
posted @ 2024-07-08 16:27 亲爱的阿道君 阅读(13) 评论(0) 推荐(0) 编辑
摘要: LambdaQueryWrapper<CAutoDistributionEntity> wrapper = new LambdaQueryWrapper<>(); wrapper.eq(CAutoDistributionEntity::getIsDelete, 0) .apply("concat(' 阅读全文
posted @ 2024-07-03 14:34 亲爱的阿道君 阅读(1) 评论(0) 推荐(0) 编辑
摘要: CompletableFuture.runAsync(() -> { // 逻辑 }); 阅读全文
posted @ 2024-06-21 14:22 亲爱的阿道君 阅读(6) 评论(0) 推荐(0) 编辑
摘要: windows 打开浏览器,在搜索引擎中输入“IP 查询”,然后访问相关的 IP 查询网站,例如“IP138”等,网站会显示您当前的公网 IP 地址。 linux 命令行输入 curl ifconfig.me 命令,回车后即可获取公网 IP 地址 阅读全文
posted @ 2024-06-20 11:07 亲爱的阿道君 阅读(96) 评论(0) 推荐(0) 编辑
摘要: import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; im 阅读全文
posted @ 2024-05-30 18:02 亲爱的阿道君 阅读(15) 评论(0) 推荐(0) 编辑
摘要: package org.cango.cjs.exception; import org.cango.base.utils.LogUtil; import org.cango.mid.base.model.Result; import org.springframework.core.Ordered; 阅读全文
posted @ 2024-04-09 15:37 亲爱的阿道君 阅读(3) 评论(0) 推荐(0) 编辑
摘要: baseToExcel(baseStr, fileName) { var raw = window.atob(baseStr); var uInt8Array = new Uint8Array(raw.length); for (var i = 0; i < raw.length; i++) { u 阅读全文
posted @ 2024-03-28 17:18 亲爱的阿道君 阅读(178) 评论(0) 推荐(0) 编辑
摘要: curl --location --request POST 'http://127.0.1.1:8080/getInfo' \ --header 'Content-Type: application/json' \ --header 'Authorization: hnxyzz' \ --data 阅读全文
posted @ 2024-02-23 10:17 亲爱的阿道君 阅读(30) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 19 下一页