相关文章
HashMap源码分析(二)
扩容
final Node<K,V>[] resize() {Node<K,V>[] oldTab table; //table默认是null//求原容器的长度int oldCap (oldTab null) ? 0 : oldTab.length;int oldThr threshold; //赋值原thresholdint newCap, newThr 0;if (oldCap > 0) { //初始不为0…
建站知识
2024/12/5 10:34:13
source /etc/profile 自动生效
source /etc/profile 开机生效
vi ~/.bashrc 在最后一行添加
source /etc/profile新窗口每次都会在打开的时候 执行 source /etc/profile
建站知识
2024/11/25 16:16:06
3D RPG Course | Core 学习日记四:鼠标控制人物移动
前言
前边我们做好了Navgation智能导航地图烘焙,并且设置好了Player的NavMeshAgent,现在我们可以开始实现鼠标控制人物的移动了。除了控制人物移动以外,我们还需要实现鼠标指针的变换。
实现要点
要实现鼠标控制人物移动,点击…
建站知识
2024/11/2 22:05:24
初步了解 RabbitMQ
目录
编辑一、MQ 概述
1、MQ 的简介
2、MQ 的用途
(1)限流削峰
(2)异步解耦
(3)数据收集
二、RabbitMQ 概述
1、RabbitMQ 简介
2、四大核心概念
3、RabbitMQ 的核心部分 编辑
4、名词解释:
三、Hello …
建站知识
2024/11/4 10:24:37
单向循环代码实现cpp
// 单向循环链表
class CircleLink
{
public:CircleLink(){head_ new Node();tail_ head_;head_->next_ head_;}~CircleLink(){Node* p head_->next_;while (p ! head_){head_->next_ p->next_;delete p;p head_->next_;}delete head_;}public:// 尾插法 …
建站知识
2024/11/15 22:13:37
detectron2环境搭建及自定义coco数据集(voc转coco)训练
detectron2建议ubuntu进行环境搭建,Windows大概率报错
一 环境搭建
创建虚拟环境
conda create -n detectron2 python3.8 -y
conda activate detectron2后面下载源代码建议存到git中再git clone
git clone https://github.com/facebookresearch/detectron2.git
…
建站知识
2024/11/3 10:42:55
三大对象的常用属性和方法【常更新】
一、工作簿
ThisWorkbook //当前工作簿,有成员提示
ActiveWorkbook //活动工作簿,有成员提示。
Workbooks(工作簿名) //用工作簿名表示工作簿对象,无成员提示。
Workbooks(n) //用索引号n表示工作簿对象,无成员提示。1、属性…
建站知识
2024/11/25 2:10:59