04 2024 档案

摘要:<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <exclusions> <exclusion> <groupId>io. 阅读全文
posted @ 2024-04-26 15:46 呀啦嗦 阅读(74) 评论(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 呀啦嗦 阅读(5) 评论(0) 推荐(0) 编辑
摘要:序号 函数式接口 描述 1 BiConsumer<T,U> 代表了一个接受两个输入参数的操作,并且不返回任何果 2 BiFunction<T,U,R> 代表了一个接受两个输入参数的方法,并且返回一个结果 3 BinaryOperator 代表了一个作用于于两个同类型操作符的操作,并且返回了操作符同类 阅读全文
posted @ 2024-04-26 15:42 呀啦嗦 阅读(7) 评论(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:38 呀啦嗦 阅读(45) 评论(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 呀啦嗦 阅读(7) 评论(0) 推荐(0) 编辑