上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页
摘要: 路径分隔符: Windows操作系统: \,反斜杠 Linux macOS操作系统:分隔符:/,斜杠 Windows系统是支持Linux分隔符:C:/Ruby/pro/aa.jpeg System.out.println(File.pathSeparator);//; System.out.prin 阅读全文
posted @ 2020-07-30 01:05 1769987233 阅读(133) 评论(0) 推荐(0) 编辑
摘要: package com.qf.demo01; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecut 阅读全文
posted @ 2020-07-30 00:56 1769987233 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 线程之间的通信:wait(),notify(),notifyAll() wait()——>让线程进入阻塞状态,暂停执行。一直阻塞 notify()——>唤醒线程,wait()住的线程,被唤醒。如果多个线程wait()了,唤醒其中的一个。 notifyAll()——>唤醒所有。 语法要求:必须在同步中 阅读全文
posted @ 2020-07-30 00:50 1769987233 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1. 串行并行并发 2. 进程 3. 线程 4. 创建线程的方式 A:创建线程并启动:继承Thread类 step1:创建子类,继承Thread类。 step2:重写run(),线程体。并发执行的内容,写在这个方法中。 step3:启动线程:start() /* class Cat class Pe 阅读全文
posted @ 2020-07-29 23:52 1769987233 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1. 异常的概念 2. 异常的分类 3. 异常的捕获 package com.qf.demo02; public class Test4Finally { public static void main(String[] args) { /* * try...catch...finally完整的语法 阅读全文
posted @ 2020-07-29 23:46 1769987233 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1. map package com.qf.demo03; import java.util.HashMap; import java.util.Map; public class Test1Map { public static void main(String[] args) { /* * Ma 阅读全文
posted @ 2020-07-29 17:44 1769987233 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1. set package com.qf.demo01; import java.util.HashSet; import java.util.Set; public class Test1Set { public static void main(String[] args) { /* * Se 阅读全文
posted @ 2020-07-26 02:11 1769987233 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1. LinkeList package com.qf.demo01; import java.util.LinkedList; import java.util.List; import java.util.concurrent.SynchronousQueue; /* * 接口A: * add( 阅读全文
posted @ 2020-07-25 22:48 1769987233 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-25 22:32 1769987233 阅读(155) 评论(0) 推荐(0) 编辑
摘要: package com.qf.demo03; import java.util.ArrayList; import java.util.List; public class Test5List { public static void main(String[] args) { //step1:创建 阅读全文
posted @ 2020-07-25 22:30 1769987233 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页