Explorar o código

更新12-19日志

zhangxiaoyu %!s(int64=3) %!d(string=hai) anos
pai
achega
b80c461a87
Modificáronse 1 ficheiros con 13 adicións e 1 borrados
  1. 13 1
      张晓宇日记/21-12月学习日志.md

+ 13 - 1
张晓宇日记/21-12月学习日志.md

@@ -39,4 +39,16 @@ public static void sortMaoPao(int[] ints, Comparator comparator) {
39 39
 * 12-13 -2 System类常见方法与案例、Date的使用方法类图以及案例
40 40
 * 12-14 今晚加班将demo中的 stompjs 迁移至apk包中发现不能使用websocket,便使用uni的插件进行socket连接。学习了Date 、Calendar、LocalDateTime使用示例方法
41 41
 * 12-15 编写了String字符串翻转问题, 注册处理题(判断数字密码纯数字,邮箱@字符必须在 .之前等,homework03 名字首字母大写以及重排问题)
42
-* 12-16 java集合、集合主要是两种(单列集合、双列集合)
42
+* 12-16 java集合、集合主要是两种(单列集合、双列集合)
43
+* 12-17-19 java Collection方法,迭代器iterator的使用、增强for循环的使用、
44
+遍历练习题、List常用方法如 add、addAll、indexOf、subList等方法、List排序练习 ListExercise02
45
+    ``` java
46
+       Iterator iterator = arrayList.iterator();
47
+        while (iterator.hasNext()) {
48
+            Object next = iterator.next();
49
+            if(next instanceof Book) {
50
+                Book book = (Book) next;
51
+                System.out.println(book);
52
+            }
53
+        }
54
+    ```