diff --git a/项目命名/项目命名格式.md b/项目命名/项目命名格式.md index aad0d03..e6a8115 100644 --- a/项目命名/项目命名格式.md +++ b/项目命名/项目命名格式.md @@ -99,20 +99,20 @@ dispose 同上 dispose ##### 4.7 与集合操作相关的方法 -| 单词 | 意义 | 例 | -| :--- | :--- | :--- -| contains | 是否持有与指定对象相同的对象 | contains -| add | 添加 |addJob -| append |添加 |appendJob -| insert |插入到下标 n |insertJob -| put |添加与 key 对应的元素 |putJob -| remove 移除元素 removeJob -| enqueue 添加到队列的最末位 enqueueJob -| dequeue 从队列中头部取出并移除 dequeueJob -|push 添加到栈头 pushJob -|pop 从栈头取出并移除 popJob -|peek 从栈头取出但不移除 peekJob -|find 寻找符合条件的某物 findById +| 单词 | 意义 | 例 | +| :---------------------------------------- | :--------------------------- | :-------- | +| contains | 是否持有与指定对象相同的对象 | contains | +| add | 添加 | addJob | +| append | 添加 | appendJob | +| insert | 插入到下标 n | insertJob | +| put | 添加与 key 对应的元素 | putJob | +| remove 移除元素 removeJob | +| enqueue 添加到队列的最末位 enqueueJob | +| dequeue 从队列中头部取出并移除 dequeueJob | +| push 添加到栈头 pushJob | +| pop 从栈头取出并移除 popJob | +| peek 从栈头取出但不移除 peekJob | +| find 寻找符合条件的某物 findById | ##### 4.8 与数据相关的方法