上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 各种算法手动操作(diy) https://visualgo.net/zh(可用,排序) http://sorting.at/ (排序) https://www.cs.usfca.edu/~galles/visualization/Algorithms.html (更多) 排序算法动态图(已有图) 阅读全文
posted @ 2020-04-11 16:01 exact 阅读(142) 评论(0) 推荐(0) 编辑
摘要: ajax 跨域 阅读全文
posted @ 2019-09-03 22:38 exact 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 逻辑关系 与 && 或者 and 或 || 或者 or 非 ! 或者 not 常用过滤条件 过滤协议 直接输入 http、tcp、arp等即可过滤 过滤源ip ip.src==192.168.134.128 过滤目的ip ip.dst==192.168.134.128 过滤ip(源+目的) ip.a 阅读全文
posted @ 2019-08-18 12:23 exact 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1. 本地环境介绍 1.1网络连接信息 本地使用Vmware搭建了多台虚拟机,对于PC而言,相当于多了一块网卡,这块网卡只能和内部通信(虚拟机) 每块网卡都有自己的ip地址。 1.2 windows下ip地址 C:\WINDOWS\system32>ipconfig /all Windows IP 阅读全文
posted @ 2019-08-18 11:19 exact 阅读(1704) 评论(0) 推荐(1) 编辑
摘要: 1.分层结构 Interfaces:接口层 该层包含与其他系统交互的所有内容,例如web服务,rmi服务。 对传入的数据进行解释、验证和转换 对传出的数据就行转换,序列化等 Application:应用层 应用层负责驱动应用程序的工作流程,匹配用例 其操作是独立于接口的,可以是同步调用,或者消息驱动 阅读全文
posted @ 2019-08-10 16:09 exact 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 1.AQS主要结构 2.public方法和属性(不需要子类去覆写的,大部分都是final方法) 3.外部并发控制类对AQS的引用-Semphore和CountDownLatch 4.外部并发控制类对AQS的引用-ReentrantLock和ReentrantReadWriteLock 5.线程池Th 阅读全文
posted @ 2019-07-21 15:38 exact 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1.Collection全览-非线程安全的实现类 接口简介 Iterable:迭代器接口,用于遍历数据。foreach或者iterator。 Collection:集合,java容器大部分集合的父类接口。java集合分两派,一派是Collection(只存储值的容器),一派是Map(存储键值对的容器 阅读全文
posted @ 2019-07-21 12:40 exact 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 使用类: 测试类: 阅读全文
posted @ 2019-07-14 12:27 exact 阅读(585) 评论(0) 推荐(0) 编辑
摘要: spring @Scheduled定时任务使用说明及基本工作原理介绍 阅读全文
posted @ 2019-07-14 12:24 exact 阅读(3769) 评论(0) 推荐(0) 编辑
摘要: 异步类: 异步方法: 配置类: 线程池相关类: 测试类: 阅读全文
posted @ 2019-07-14 12:21 exact 阅读(10114) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页