上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页
摘要: 调用 insteadList 反转数组 public Node<U> reverseList(Node<U> head) { if(head == null ) return null; Node<U> new_head = reverseList(head.next); if(new_head ! 阅读全文
posted @ 2021-09-17 08:58 小庄的blog 阅读(61) 评论(0) 推荐(0) 编辑
摘要: Gnirehtet – 为 Android 设备提供反向网络连接[Windows、macOS、Linux] 准备: gnirehtet (选择gnirehtet-rust-win64.zip):https://github.com/Genymobile/gnirehtet 使用:压缩放在喜欢的地方, 阅读全文
posted @ 2021-09-14 17:54 小庄的blog 阅读(776) 评论(0) 推荐(0) 编辑
摘要: 公式法有两个公式: 立方和公式:a^3+b^3=(a+b) (a^2-ab+b^2)立方差公式:a^3-b^3=(a-b) (a^2+ab+b^2) 阅读全文
posted @ 2021-09-09 17:11 小庄的blog 阅读(4548) 评论(0) 推荐(0) 编辑
摘要: A是B的充分条件,A,C,D...任意一个存在都能使B成立。 A是B的必要条件,A+C+D多个条件才能推出B 取自: https://www.zhihu.com/question/30469121 阅读全文
posted @ 2021-09-09 16:08 小庄的blog 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 四级词汇 Word List 1 sincere 真诚的 mood 情绪 static 稳定的 senator 议员 hobby 兴趣 lad 小伙子 equip 装备 frown 蹙眉 fasten 紧抓 software 软件 stir 搅拌 distribution 分配 flexible 可 阅读全文
posted @ 2021-09-08 22:09 小庄的blog 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-08 17:12 小庄的blog 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 后端接口代码: /** * 根据用户id修改用户信息 */ @PostMapping("/updateUser") public R updateUserById(@RequestBody User user) { log.info("*****************要更新的用户数据:"+user 阅读全文
posted @ 2021-08-30 13:45 小庄的blog 阅读(3164) 评论(0) 推荐(0) 编辑
摘要: 博主报的是: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLNonTransientConnec 阅读全文
posted @ 2021-08-29 12:16 小庄的blog 阅读(5149) 评论(0) 推荐(0) 编辑
摘要: 下载 JDK 下载地址:https://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html 点击下载按钮: 开始安装JDK: 可以设置为你想安装的路径。 环境变量配置 1. 打开 环境变量窗口 右键 This 阅读全文
posted @ 2021-08-22 11:30 小庄的blog 阅读(102) 评论(0) 推荐(0) 编辑
摘要: Aug 03, 2021 1:05:08 AM org.apache.http.impl.execchain.RetryExec execute INFO: Retrying request to {}->unix://localhost:80 [WARNING] An attempt failed 阅读全文
posted @ 2021-08-03 16:19 小庄的blog 阅读(2541) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页