Skip to content

Commit

Permalink
typo: 复本 改为 副本
Browse files Browse the repository at this point in the history
typo: 复本 改为  副本
  • Loading branch information
shifenhutu authored Oct 12, 2022
1 parent 3ccaac1 commit 390d658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 05_DataStorage/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ solidity数据存储位置有三类:`storage`,`memory`和`calldata`。不同
**Example:**
![5-2.png](./img/5-2.png)

2. `storage`赋值给`memory`会创建独立的复本,修改其中一个不会影响另一个;反之亦然。例子:
2. `storage`赋值给`memory`会创建独立的副本,修改其中一个不会影响另一个;反之亦然。例子:
```solidity
uint[] x = [1,2,3]; // 状态变量:数组 x
Expand All @@ -75,7 +75,7 @@ solidity数据存储位置有三类:`storage`,`memory`和`calldata`。不同

3. `memory`赋值给`memory`,会创建引用,改变新变量会影响原变量。

4. 其他情况,变量赋值给`storage`会创建独立的复本,修改其中一个不会影响另一个。
4. 其他情况,变量赋值给`storage`会创建独立的副本,修改其中一个不会影响另一个。

## 变量的作用域
`Solidity`中变量按作用域划分有三种,分别是状态变量(state variable),局部变量(local variable)和全局变量(global variable)
Expand Down

0 comments on commit 390d658

Please sign in to comment.