Skip to content

Commit

Permalink
Merge pull request #562 from XdpCs/fix-02-readme
Browse files Browse the repository at this point in the history
docs(02_valuetypes/readme.md): fix markdown warings and fill out &&
  • Loading branch information
AmazingAng authored Nov 6, 2023
2 parents b3e1088 + 59b18de commit 64a0b05
Showing 1 changed file with 48 additions and 35 deletions.
83 changes: 48 additions & 35 deletions 02_ValueTypes/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ tags:
-----

## Solidity中的变量类型

1. **值类型(Value Type)**:包括布尔型,整数型等等,这类变量赋值时候直接传递数值。

2. **引用类型(Reference Type)**:包括数组和结构体,这类变量占空间大,赋值时候直接传递地址(类似指针)。
Expand All @@ -28,12 +29,14 @@ tags:
我们将仅介绍常用类型,不常用的类型不会涉及,本篇将介绍值类型。

## 值类型

### 1. 布尔型

布尔型是二值变量,取值为 `true``false`

```solidity
// 布尔值
bool public _bool = true;
// 布尔值
bool public _bool = true;
```

布尔值的运算符包括:
Expand All @@ -45,44 +48,46 @@ tags:
- `!=` (不等于)

```solidity
// 布尔运算
bool public _bool1 = !_bool; // 取非
bool public _bool2 = _bool && _bool1; // 与
bool public _bool3 = _bool || _bool1; // 或
bool public _bool4 = _bool == _bool1; // 相等
bool public _bool5 = _bool != _bool1; // 不相等
// 布尔运算
bool public _bool1 = !_bool; // 取非
bool public _bool2 = _bool && _bool1; // 与
bool public _bool3 = _bool || _bool1; // 或
bool public _bool4 = _bool == _bool1; // 相等
bool public _bool5 = _bool != _bool1; // 不相等
```

在上述代码中:变量 `_bool` 的取值是 `true``_bool1``_bool` 的非,为 `false``_bool && _bool1``false``_bool || _bool1``true``_bool == _bool1``false``_bool != _bool1``true`

**值得注意的是:**`&&``||` 运算符遵循短路规则,这意味着,假如存在 `f(x) || g(y)` 的表达式,如果 `f(x)``true``g(y)` 不会被计算,即使它和 `f(x)` 的结果是相反的。
**值得注意的是:**`&&``||` 运算符遵循短路规则,这意味着,假如存在 `f(x) || g(y)` 的表达式,如果 `f(x)``true``g(y)` 不会被计算,即使它和 `f(x)` 的结果是相反的。假如存在`f(x) && g(y)` 的表达式,如果 `f(x)``false``g(y)` 不会被计算。

### 2. 整型

整型是 Solidity 中的整数,最常用的包括:

```solidity
// 整型
int public _int = -1; // 整数,包括负数
uint public _uint = 1; // 正整数
uint256 public _number = 20220330; // 256位正整数
// 整型
int public _int = -1; // 整数,包括负数
uint public _uint = 1; // 正整数
uint256 public _number = 20220330; // 256位正整数
```

常用的整型运算符包括:

- 比较运算符(返回布尔值): `<=``<``==``!=``>=``>`
- 比较运算符(返回布尔值): `<=``<``==``!=``>=``>`
- 算数运算符: `+``-``*``/``%`(取余),`**`(幂)

```solidity
// 整数运算
uint256 public _number1 = _number + 1; // +,-,*,/
uint256 public _number2 = 2**2; // 指数
uint256 public _number3 = 7 % 2; // 取余数
bool public _numberbool = _number2 > _number3; // 比大小
// 整数运算
uint256 public _number1 = _number + 1; // +,-,*,/
uint256 public _number2 = 2**2; // 指数
uint256 public _number3 = 7 % 2; // 取余数
bool public _numberbool = _number2 > _number3; // 比大小
```

大家可以运行一下代码,看看这 4 个变量分别是多少。

### 3. 地址类型

地址类型(address)有两类:

- 普通地址(address): 存储一个 20 字节的值(以太坊地址的大小)。
Expand All @@ -91,11 +96,11 @@ tags:
我们会在之后的章节更加详细地介绍 payable address。

```solidity
// 地址
address public _address = 0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71;
address payable public _address1 = payable(_address); // payable address,可以转账、查余额
// 地址类型的成员
uint256 public balance = _address1.balance; // balance of address
// 地址
address public _address = 0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71;
address payable public _address1 = payable(_address); // payable address,可以转账、查余额
// 地址类型的成员
uint256 public balance = _address1.balance; // balance of address
```

### 4. 定长字节数组
Expand All @@ -106,37 +111,45 @@ tags:
- 不定长字节数组: 属于引用类型(之后的章节介绍),数组长度在声明之后可以改变,包括 `bytes` 等。

```solidity
// 固定长度的字节数组
bytes32 public _byte32 = "MiniSolidity";
bytes1 public _byte = _byte32[0];
// 固定长度的字节数组
bytes32 public _byte32 = "MiniSolidity";
bytes1 public _byte = _byte32[0];
```

在上述代码中,`MiniSolidity` 变量以字节的方式存储进变量 `_byte32`。如果把它转换成 `16 进制`,就是:`0x4d696e69536f6c69646974790000000000000000000000000000000000000000`

`_byte` 变量的值为 `_byte32` 的第一个字节,即 `0x4d`

### 5. 枚举 enum

枚举(`enum`)是 Solidity 中用户定义的数据类型。它主要用于为 `uint` 分配名称,使程序易于阅读和维护。它与 `C 语言` 中的 `enum` 类似,使用名称来代替从 `0` 开始的 `uint`

```solidity
// 用enum将uint 0, 1, 2表示为Buy, Hold, Sell
enum ActionSet { Buy, Hold, Sell }
// 创建enum变量 action
ActionSet action = ActionSet.Buy;
// 用enum将uint 0, 1, 2表示为Buy, Hold, Sell
enum ActionSet { Buy, Hold, Sell }
// 创建enum变量 action
ActionSet action = ActionSet.Buy;
```

枚举可以显式地和 `uint` 相互转换,并会检查转换的正整数是否在枚举的长度内,否则会报错:

```solidity
// enum可以和uint显式的转换
function enumToUint() external view returns(uint){
return uint(action);
}
// enum可以和uint显式的转换
function enumToUint() external view returns(uint){
return uint(action);
}
```

`enum` 是一个比较冷门的变量,几乎没什么人用。

## 在 Remix 上运行

- 部署合约后可以查看每个类型的变量的数值:

![2-1.png](./img/2-1.png)

- `enum``uint` 转换的示例:

![2-2.png](./img/2-2.png)
![2-3.png](./img/2-3.png)

Expand Down

0 comments on commit 64a0b05

Please sign in to comment.