auto commit
This commit is contained in:
parent
6f23b3d6f0
commit
bdb8189bcc
|
@ -1,16 +0,0 @@
|
||||||
<!-- GFM-TOC -->
|
|
||||||
* [0. 进程内存空间中,堆和栈的区别](#0-进程内存空间中,堆和栈的区别)
|
|
||||||
<!-- GFM-TOC -->
|
|
||||||
|
|
||||||
|
|
||||||
# 0. 进程内存空间中,堆和栈的区别
|
|
||||||
|
|
||||||
> C++
|
|
||||||
|
|
||||||
堆:动态、malloc()、new、链式分配、向上生长;栈:函数调用、编译器分配回收、向下生长。
|
|
||||||
|
|
||||||
https://www.cnblogs.com/sunziying/p/6510030.html
|
|
||||||
|
|
||||||
By @CyC
|
|
||||||
|
|
||||||
---
|
|
|
@ -221,8 +221,8 @@ MySQL 中提供了两种封锁粒度:行级锁以及表级锁。
|
||||||
| unlock-x(A) |. |
|
| unlock-x(A) |. |
|
||||||
| | obtain |
|
| | obtain |
|
||||||
| | read A=20 |
|
| | read A=20 |
|
||||||
| | commit |
|
|
||||||
| | unlock-s(A)|
|
| | unlock-s(A)|
|
||||||
|
| | commit |
|
||||||
|
|
||||||
**三级封锁协议**
|
**三级封锁协议**
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,7 @@ POM 代表项目对象模型,它是一个 XML 文件,保存在项目根目
|
||||||
|
|
||||||
[groupId, artifactId, version, packaging, classifier] 称为一个项目的坐标,其中 groupId、artifactId、version 必须定义,packaging 可选(默认为 Jar),classifier 不能直接定义的,需要结合插件使用。
|
[groupId, artifactId, version, packaging, classifier] 称为一个项目的坐标,其中 groupId、artifactId、version 必须定义,packaging 可选(默认为 Jar),classifier 不能直接定义的,需要结合插件使用。
|
||||||
|
|
||||||
|
|
||||||
- groupId:项目组 Id,必须全球唯一;
|
- groupId:项目组 Id,必须全球唯一;
|
||||||
- artifactId:项目 Id,即项目名;
|
- artifactId:项目 Id,即项目名;
|
||||||
- version:项目版本;
|
- version:项目版本;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user