commit aa2981f4d3a26ad8fe72c3895984457385597931
Author: icecat <1193498534@qq.com>
Date: Fri Mar 21 22:56:25 2025 +0800
first save
diff --git a/Java.md b/Java.md
new file mode 100644
index 0000000..8c3a11c
--- /dev/null
+++ b/Java.md
@@ -0,0 +1,337 @@
+# Java学习
+
+## 静态 static修饰成员的特点
+
+
+
+## 运算符
+
+### 扩展赋值运算符
+
+扩展赋值运算符,内部自带强转效果
+
+
+
+### 关系运算符
+
+
+
+
+
+
+
+不用记,若想让哪个先运算,只需加小括号
+
+## 成员变量和局部变量的区别
+
+
+
+## this关键字
+
+
+
+## 标准Javabean
+
+
+
+## String类的特点
+
+
+
+### String类截取方法
+
+
+
+
+
+## StringBuilder的特点
+
+### 构造方法和介绍
+
+
+
+### 提高了字符串的效率
+
+
+
+### 常用的成员方法
+
+
+
+
+
+### StringBuilder和StringBuffer区别
+
+成员方法一致
+
+但是StringBuilder多线程不安全但效率偏高
+
+StringBuffer多线程安全但效率偏低
+
+## ArrayList集合
+
+
+
+
+
+### ArrayList集合成员方法
+
+
+
+## extends继承
+
+
+
+注意事项:
+
+
+
+### 只支持单继承,不支持多继承,支持多层继承
+
+例子:
+
+
+
+不能多继承原因:如果多继承 会导致子类若执行俩父类中声明完全相同方法时,不知道会执行哪一个
+
+## 权限修饰符
+
+
+
+***其中protected***不常用访问麻烦 需要在子类中通过创建新方法然后通过super方法进行调用
+
+## This和super
+
+### 开闭原则:
+
+
+
+例如
+
+1.0版本有三个成员变量
+
+1.1版本有四个成员变量
+
+则在不修改原来代码的基础上,对原有构造方法进行重载,加上新成员变量
+
+代码如下
+
+```java
+public A(){
+
+this.(a,b,c)
+
+this.d = d
+
+}
+```
+
+### this和super
+
+
+
+## final关键字
+
+
+
+### 细节补充:
+
+
+
+## abstract抽象类和抽象方法
+
+
+
+### 什么时候用:
+
+把子类共性的方法抽取到父类,发现描述不清时,就可以把此方法变为抽象方法来让子类重写
+
+### 定义格式
+
+
+
+### abstract关键字冲突
+
+final:被final修饰的方法无法进行重写
+
+private:抽象方法需子类重写。private修饰后不能跨类调用无法重写
+
+static:类名可调用static修饰的方法,对于抽象方法无意义
+
+### abstract抽象类注意事项
+
+1.不能实例化(不能创建对象)
+
+防止调用内部方法
+
+2.存在构造方法
+
+通过子类super调用抽象父类构造方法
+
+3.存在普通方法体
+
+可以通过子类进行访问
+
+4.抽象类的子类
+
+要么重写所有抽象方法,要么本身就是抽象类
+
+## 接口介绍:
+
+接口:体现的思想是对规则的声明
+
+**成员变量:默认被public static final所修饰,所以只能为常量**
+
+**成员方法:默认被public abstract所修饰,只能为抽象方法*****但是JDK7 和8有一些新特性***
+
+接口无构造方法
+
+ Java中更多的体现是对行为的抽象
+
+
+
+### 定义方法:
+
+```java
+interface inter{
+ public abstract void a();
+ public abstract void b();
+}
+
+class interfac implements inter{
+
+ @Override
+ public void a() {
+
+ }
+
+ @Override
+ public void b() {
+
+ }
+}
+```
+
+没啥用 做个测试 哈哈哈哈哈 图床使用
+
+
+
+## 多态:
+
+### 前提:
+
+1. 有继承/实现关系
+2. 有方法重写
+3. **父类引用指向子类对象**
+
+
+
+### 成员访问特点:
+
+成员变量:编译看左边(父类)运行看左边(父类)
+
+成员方法:编译看左边(父类)运行看右边(子类)
+
+- 在编译时会检查父类中有无这个方法。无就报错,有则编译通过,但执行子类方法
+
+- 原因:防止父类方法为抽象方法
+
+- 多态创建对象,调用静态成员
+
+ 静态成员仅推荐用类名调用,即使通过对象名调用也是假象,生成字节码文件后会自动改为类名调用
+
+### 好处和弊端:
+
+拓展性!拓展性!我理解为复用性也有 代码量减少了一点
+
+
+
+#### 多态转型:转型问题
+
+
+
+
+
+解决方法:
+
+instanceof类型
+
+格式:`对象名 instanceof 类型`
+
+判断一个对象是否是右边的引用类型
+
+返回boolean类型的结果
+
+## JDK8和9版本的新特性:
+
+### JDK8中:
+
+允许在接口定义非抽象方法,但是需要关键字default修饰,这些方法时默认方法
+
+作用:解决接口升级问题
+
+接口中默认方法定义格式
+
+格式:`public default 返回值类型 方法名(参数列表){}`
+
+重新interface接口里的默认方法时,要将标识interface接口名加在前
+
+例如 `inter.super.method()`
+
+#### 2:接口中允许定义static静态方法
+
+接口中静态方法的定义格式:
+
+格式:public static 返回值类型 方法名(参数列表){}
+
+注意事项:
+
+
+
+### JDK9中:
+
+
+
+#### 为和允许定义私有方法:
+
+
+
+提升复用性,减少冗余代码
+
+## 代码块
+
+**了解即可**
+
+
+
+## 内部类:
+
+### 成员内部类:了解
+
+**了解即可**
+
+翻看Java源代码会有内部类,所以得了解,无知识盲区
+
+
+
+#### 内部类成员访问:
+
+内部类中,访问外部类成员:直接访问,私有也可以
+
+外部类中,访问内部类成员:需要创建对象访问,
+
+
+
+#### 为何要学习内部类?
+
+**封装性更好**
+
+例如:
+
+
+
+### 静态内部类:了解
+
+### 局部内部类:了解
+
+### 匿名内部类:必须掌握!!
diff --git a/imgh/image-20250227144846893.png b/imgh/image-20250227144846893.png
new file mode 100644
index 0000000..2887bbb
Binary files /dev/null and b/imgh/image-20250227144846893.png differ
diff --git a/imgh/image-20250227150015125.png b/imgh/image-20250227150015125.png
new file mode 100644
index 0000000..d9928b9
Binary files /dev/null and b/imgh/image-20250227150015125.png differ
diff --git a/imgh/image-20250227150114816.png b/imgh/image-20250227150114816.png
new file mode 100644
index 0000000..d5e48fc
Binary files /dev/null and b/imgh/image-20250227150114816.png differ
diff --git a/imgh/image-20250227150145972.png b/imgh/image-20250227150145972.png
new file mode 100644
index 0000000..efa55e4
Binary files /dev/null and b/imgh/image-20250227150145972.png differ
diff --git a/imgh/image-20250227151132676.png b/imgh/image-20250227151132676.png
new file mode 100644
index 0000000..c1ffa94
Binary files /dev/null and b/imgh/image-20250227151132676.png differ
diff --git a/imgh/image-20250303150638312.png b/imgh/image-20250303150638312.png
new file mode 100644
index 0000000..8141f0d
Binary files /dev/null and b/imgh/image-20250303150638312.png differ
diff --git a/imgh/image-20250303152002372.png b/imgh/image-20250303152002372.png
new file mode 100644
index 0000000..1748ff0
Binary files /dev/null and b/imgh/image-20250303152002372.png differ
diff --git a/imgh/image-20250303161759800.png b/imgh/image-20250303161759800.png
new file mode 100644
index 0000000..6cde215
Binary files /dev/null and b/imgh/image-20250303161759800.png differ
diff --git a/imgh/image-20250306160712424.png b/imgh/image-20250306160712424.png
new file mode 100644
index 0000000..62b78a5
Binary files /dev/null and b/imgh/image-20250306160712424.png differ
diff --git a/imgh/image-20250307151219381.png b/imgh/image-20250307151219381.png
new file mode 100644
index 0000000..97184a4
Binary files /dev/null and b/imgh/image-20250307151219381.png differ
diff --git a/imgh/image-20250307153940677.png b/imgh/image-20250307153940677.png
new file mode 100644
index 0000000..ce70fce
Binary files /dev/null and b/imgh/image-20250307153940677.png differ
diff --git a/imgh/image-20250307154712819.png b/imgh/image-20250307154712819.png
new file mode 100644
index 0000000..6e371c2
Binary files /dev/null and b/imgh/image-20250307154712819.png differ
diff --git a/imgh/image-20250307163441799.png b/imgh/image-20250307163441799.png
new file mode 100644
index 0000000..e51775e
Binary files /dev/null and b/imgh/image-20250307163441799.png differ
diff --git a/imgh/image-20250307163606184.png b/imgh/image-20250307163606184.png
new file mode 100644
index 0000000..3e4918a
Binary files /dev/null and b/imgh/image-20250307163606184.png differ
diff --git a/imgh/image-20250311170433866.png b/imgh/image-20250311170433866.png
new file mode 100644
index 0000000..6489b24
Binary files /dev/null and b/imgh/image-20250311170433866.png differ
diff --git a/imgh/image-20250311170523666.png b/imgh/image-20250311170523666.png
new file mode 100644
index 0000000..98324ce
Binary files /dev/null and b/imgh/image-20250311170523666.png differ
diff --git a/imgh/image-20250312180718819.png b/imgh/image-20250312180718819.png
new file mode 100644
index 0000000..4e5dcfb
Binary files /dev/null and b/imgh/image-20250312180718819.png differ
diff --git a/imgh/image-20250317154909941.png b/imgh/image-20250317154909941.png
new file mode 100644
index 0000000..3a495cf
Binary files /dev/null and b/imgh/image-20250317154909941.png differ
diff --git a/imgh/image-20250317154930258.png b/imgh/image-20250317154930258.png
new file mode 100644
index 0000000..f0eb4a4
Binary files /dev/null and b/imgh/image-20250317154930258.png differ
diff --git a/imgh/image-20250317160532814.png b/imgh/image-20250317160532814.png
new file mode 100644
index 0000000..e45c8d7
Binary files /dev/null and b/imgh/image-20250317160532814.png differ
diff --git a/imgh/image-20250317161000220.png b/imgh/image-20250317161000220.png
new file mode 100644
index 0000000..99d94d9
Binary files /dev/null and b/imgh/image-20250317161000220.png differ
diff --git a/imgh/image-20250318161204589.png b/imgh/image-20250318161204589.png
new file mode 100644
index 0000000..63e2cff
Binary files /dev/null and b/imgh/image-20250318161204589.png differ
diff --git a/imgh/image-20250318161614034.png b/imgh/image-20250318161614034.png
new file mode 100644
index 0000000..8c637b6
Binary files /dev/null and b/imgh/image-20250318161614034.png differ
diff --git a/imgh/image-20250318163415671.png b/imgh/image-20250318163415671.png
new file mode 100644
index 0000000..fcd2fa9
Binary files /dev/null and b/imgh/image-20250318163415671.png differ
diff --git a/imgh/image-20250318163435173.png b/imgh/image-20250318163435173.png
new file mode 100644
index 0000000..38cd4db
Binary files /dev/null and b/imgh/image-20250318163435173.png differ
diff --git a/imgh/image-20250318170528242.png b/imgh/image-20250318170528242.png
new file mode 100644
index 0000000..704caf3
Binary files /dev/null and b/imgh/image-20250318170528242.png differ
diff --git a/imgh/image-20250318170848511.png b/imgh/image-20250318170848511.png
new file mode 100644
index 0000000..31b8684
Binary files /dev/null and b/imgh/image-20250318170848511.png differ
diff --git a/imgh/image-20250319161530044.png b/imgh/image-20250319161530044.png
new file mode 100644
index 0000000..f6b590a
Binary files /dev/null and b/imgh/image-20250319161530044.png differ
diff --git a/imgh/image-20250319163016866.png b/imgh/image-20250319163016866.png
new file mode 100644
index 0000000..4589cb6
Binary files /dev/null and b/imgh/image-20250319163016866.png differ
diff --git a/imgh/image-20250319163112309.png b/imgh/image-20250319163112309.png
new file mode 100644
index 0000000..fcb8213
Binary files /dev/null and b/imgh/image-20250319163112309.png differ
diff --git a/imgh/image-20250319174939799.png b/imgh/image-20250319174939799.png
new file mode 100644
index 0000000..3e83ecc
Binary files /dev/null and b/imgh/image-20250319174939799.png differ
diff --git a/imgh/image-20250320151226123.png b/imgh/image-20250320151226123.png
new file mode 100644
index 0000000..6508b05
Binary files /dev/null and b/imgh/image-20250320151226123.png differ
diff --git a/imgh/image-20250320153129346.png b/imgh/image-20250320153129346.png
new file mode 100644
index 0000000..4b6fe3e
Binary files /dev/null and b/imgh/image-20250320153129346.png differ
diff --git a/imgh/image-20250320153224487.png b/imgh/image-20250320153224487.png
new file mode 100644
index 0000000..189d384
Binary files /dev/null and b/imgh/image-20250320153224487.png differ
diff --git a/imgh/image-20250320153229495.png b/imgh/image-20250320153229495.png
new file mode 100644
index 0000000..189d384
Binary files /dev/null and b/imgh/image-20250320153229495.png differ
diff --git a/imgh/image-20250321162816640.png b/imgh/image-20250321162816640.png
new file mode 100644
index 0000000..fdaeca1
Binary files /dev/null and b/imgh/image-20250321162816640.png differ
diff --git a/imgh/image-20250321162851893.png b/imgh/image-20250321162851893.png
new file mode 100644
index 0000000..f76e942
Binary files /dev/null and b/imgh/image-20250321162851893.png differ
diff --git a/imgh/image-20250321162940062.png b/imgh/image-20250321162940062.png
new file mode 100644
index 0000000..36da14b
Binary files /dev/null and b/imgh/image-20250321162940062.png differ
diff --git a/imgh/image-20250321171212459.png b/imgh/image-20250321171212459.png
new file mode 100644
index 0000000..e506656
Binary files /dev/null and b/imgh/image-20250321171212459.png differ
diff --git a/imgh/image-20250321172536776.png b/imgh/image-20250321172536776.png
new file mode 100644
index 0000000..162988f
Binary files /dev/null and b/imgh/image-20250321172536776.png differ
diff --git a/imgh/image-20250321172717338.png b/imgh/image-20250321172717338.png
new file mode 100644
index 0000000..ee1a314
Binary files /dev/null and b/imgh/image-20250321172717338.png differ
diff --git a/imgh/image-20250321172953230.png b/imgh/image-20250321172953230.png
new file mode 100644
index 0000000..c4f46f7
Binary files /dev/null and b/imgh/image-20250321172953230.png differ