摘要: 添加快捷代码 语法: <base href="<%=request.getContextPath() + "/"%>"> <script type="text/javascript" src="script/jquery-3.6.0.min.js"></script> <script type="t 阅读全文
posted @ 2023-06-05 13:32 爱新觉罗LQ 阅读(66) 评论(0) 推荐(0)
摘要: # IDEA谷歌翻译使用 使用 Magic后,要设置代理 ![](https://img2023.cnblogs.com/blog/2171496/202305/2171496-20230528190204968-883026997.png) 阅读全文
posted @ 2023-05-28 19:02 爱新觉罗LQ 阅读(75) 评论(0) 推荐(0)
摘要: 文本处理 https://yuanliao.info/d/4174 阅读全文
posted @ 2023-04-21 13:53 爱新觉罗LQ 阅读(20) 评论(0) 推荐(0)
摘要: 数据结构绘图 1. 树 1.1 层次遍历 https://binary-tree-visualizer.vercel.app/ 输入格式 [5, 4, 6, null, null, 3, 7] [4, 3, 6, null, null, 5, 7,null, null, null, 8] 1.2 H 阅读全文
posted @ 2023-04-21 13:52 爱新觉罗LQ 阅读(196) 评论(0) 推荐(0)
摘要: Mermaid 学习 1. 指导文档 https://mermaid.js.org/intro/n00b-syntaxReference.html 2. 画图模板 2.1 流程图 flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C 阅读全文
posted @ 2023-04-05 15:55 爱新觉罗LQ 阅读(229) 评论(0) 推荐(0)
摘要: 1. Java 的浮点运算是基于 IEEE-754 标准来的。 IEEE-754 standard Java's Floating-Point Operations 2. Java 语言规范 https://docs.oracle.com/javase/specs/jls/se7/html/jls- 阅读全文
posted @ 2023-03-31 12:24 爱新觉罗LQ 阅读(156) 评论(0) 推荐(0)
摘要: Java是不能直接在类中对变量进行赋值的 错误案例 只能在定义的时候赋值 或者在方法中赋值,或者在代码块中赋值 public class uuq { public static void main(String[] args) { c c = new c(); c.update(3); System 阅读全文
posted @ 2023-03-30 13:11 爱新觉罗LQ 阅读(368) 评论(0) 推荐(0)
摘要: 内部类【可以直接访问私有属性,并且可以体现类与类之间的包含关系】 | | 内部 > 外部类 | 外部类 > 内部 | 外部其它类 > 内部 | | | | | | | 局部内部类 | 直接访问如果名称相同,使用 外部类.this.成员 访问外部类的成员 | 创建对象,再访问(注意:必须在作用域内) 阅读全文
posted @ 2023-03-29 12:39 爱新觉罗LQ 阅读(73) 评论(0) 推荐(0)
摘要: 接口(Interface) 1. 快速入门 package com.interface_; public interface UsbInterface { // 接口 (制定规范) // 规定接口的相关方法,老师规定的,即规范 public void start(); public void sto 阅读全文
posted @ 2023-03-28 13:04 爱新觉罗LQ 阅读(57) 评论(0) 推荐(0)
摘要: 反射(reflection) // 已知某个类得实例,调用该实例得 getClass() 方法获取 Class 对象 【就是 运行类型】 Car car = new Car(); Class<? extends Car> aClass3 = car.getClass(); System.out.pr 阅读全文
posted @ 2023-03-26 11:58 爱新觉罗LQ 阅读(170) 评论(0) 推荐(0)