摘要: Mybatis基本操作 根据id查询 <select id="findById" resultType="com.itheima.domain.User" parameterType="int"> select * from user where id = #{uid} </select> 在持久层 阅读全文
posted @ 2021-10-20 19:38 只会CrtlCV咋办 阅读(30) 评论(0) 推荐(0)
摘要: 链表反转 public class Solution { public ListNode ReverseList(ListNode head) { if (head == null) { return null; } ListNode second = head.next; head.next = 阅读全文
posted @ 2021-10-20 18:58 只会CrtlCV咋办 阅读(38) 评论(0) 推荐(0)
摘要: 常识 // JVM(Java Virtual Machine) java虚拟机 // JRE(Java Runtime Environment) java程序的运行时环境,包含 JVM 和 运行时所需要的核心类库 // JDK(Java Development Kit) java程序开发包,包含JR 阅读全文
posted @ 2021-08-11 19:40 只会CrtlCV咋办 阅读(30) 评论(0) 推荐(0)
摘要: 指针操作 或者 利用栈 阅读全文
posted @ 2021-07-15 17:36 只会CrtlCV咋办 阅读(38) 评论(0) 推荐(0)