摘要: import lombok.extern.slf4j.Slf4j; import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.ListUtils; import org 阅读全文
posted @ 2024-05-13 15:42 呀啦嗦 阅读(3) 评论(0) 推荐(0) 编辑
摘要: JVM内存模型 JVM内存模型包括:线程计数器、本地方法栈、栈、堆、方法区(元空间),类装载子系统,字节码执行引擎。 线程计数器 线程启动时,程序技术会分配一小块空间分配给当前线程,每个线程都会独享一块程序计数器空间,用于存储下条指令的单元地址 程序计数器是一块较小的内存空间,用于存储下条指令的单元 阅读全文
posted @ 2024-05-11 10:47 呀啦嗦 阅读(52) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <exclusions> <exclusion> <groupId>io. 阅读全文
posted @ 2024-04-26 15:47 呀啦嗦 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 表结构 create table common_tree ( id bigint not null comment '主键' primary key, p_id bigint null comment '父节点id', tree_code varchar(100) null comment '树形区 阅读全文
posted @ 2024-04-26 15:44 呀啦嗦 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 序号 函数式接口 描述 1 BiConsumer<T,U> 代表了一个接受两个输入参数的操作,并且不返回任何果 2 BiFunction<T,U,R> 代表了一个接受两个输入参数的方法,并且返回一个结果 3 BinaryOperator 代表了一个作用于于两个同类型操作符的操作,并且返回了操作符同类 阅读全文
posted @ 2024-04-26 15:42 呀啦嗦 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1. 栈和局部变量操作 1.1 将常量压入栈的指令 指令 功能描述 aconst_null 将null对象引用压入栈 iconst_m1 将将int类型常量-1压入栈 iconst_0 将int类型常量0压入栈 iconst_1 将int类型常量1压入栈 iconst_2 将int类型常量2压入栈 阅读全文
posted @ 2024-04-26 15:39 呀啦嗦 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/chiwang1984/article/details/8593240 import lombok.extern.slf4j.Slf4j; import java.io.BufferedReader; import java.io.DataInput 阅读全文
posted @ 2024-04-26 15:34 呀啦嗦 阅读(5) 评论(0) 推荐(0) 编辑