上一页 1 2 3 4 5 6 7 8 ··· 22 下一页
摘要: /** * hashset的特点: 无序 唯一 需要比较器 自定义<>中的内容需要实现comparable的接口 推荐外部实现:多态,自定义多种规则 * 底层实现逻辑: 数组+线性表 哈希表 * 1. 先计算出hash值 2.通过一个表达式计算出哈希表中的位置 3. 解决哈希冲突 * 通过hashm 阅读全文
posted @ 2023-01-18 16:17 李悠然 阅读(13) 评论(0) 推荐(0) 编辑
摘要: /** * 底层实现逻辑: 数组 线性表 查询效率高,修改效率低 * 所有的操作类同ArrayList 但是synchronize 线程安全 * 效率低 */public class Vector<E> extends AbstractList<E> implements List<E>, Rand 阅读全文
posted @ 2023-01-18 16:02 李悠然 阅读(8) 评论(0) 推荐(0) 编辑
摘要: /** * 有序(输入有序),不唯一 * 底层实现是双向链表 * 易修改,不易查询 */public class LinkedList<E> extends AbstractSequentialList<E> implements List<E>, Deque<E>, Cloneable, java 阅读全文
posted @ 2023-01-18 15:52 李悠然 阅读(13) 评论(0) 推荐(0) 编辑
摘要: /*** 1. ArrayList AbstractList中实现了List接口 冗余,作者已经承认* 2. RandomAccess 可以随机访问,标记接口* **/ public class ArrayList<E> extends AbstractList<E> implements List 阅读全文
posted @ 2023-01-18 15:33 李悠然 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Couldn't lock file 'lock' in directory /var/atlassian/application-data/confluence Make sure the dire confluence因为服务器重启之后导致了这个问题。 重启confluence root@com 阅读全文
posted @ 2023-01-10 07:30 李悠然 阅读(254) 评论(0) 推荐(0) 编辑
摘要: expect@29.2.0: The engine "node" is incompatible with this module. Expected version "^14.15.0 || ^16.10.0 || >=18.0.0". Got "16.6.1" 直接忽略 [root@localh 阅读全文
posted @ 2023-01-09 07:59 李悠然 阅读(211) 评论(0) 推荐(0) 编辑
摘要: docker build 部署java环境 1. 创建java文件并将jdk复制到目录下 root@controller-PowerEdge-T30:/home/docker/java# lsDockerfile jdk-8u151-linux-x64.tar.gzroot@controller-P 阅读全文
posted @ 2022-12-21 09:32 李悠然 阅读(140) 评论(0) 推荐(0) 编辑
摘要: docker run -it --env PX4_SIM_HOST_ADDR=172.18.0.2 --network=dev_default -v ~/dev/PX4/PX4-Autopilot:/src/PX4-Autopilot/:rw -v /tmp/.X11-unix:/tmp/.X11- 阅读全文
posted @ 2022-12-20 11:29 李悠然 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1. 下载镜像 root@reqq:/home/docker/rabbit# docker pull rabbitmqUsing default tag: latestlatest: Pulling from library/rabbitmq846c0b181fff: Already exists 阅读全文
posted @ 2022-12-15 10:54 李悠然 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 1. 下载 [root@host-10-23-110-128 mysql]# docker pull nginx:latestlatest: Pulling from library/nginxa2abf6c4d29d: Already exists a9edb18cadd1: Pull compl 阅读全文
posted @ 2022-11-24 16:49 李悠然 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 22 下一页