Skip to content

Latest commit

 

History

History
197 lines (180 loc) · 18.9 KB

File metadata and controls

197 lines (180 loc) · 18.9 KB

WTF Solidity 極簡入門:映射類型

重點內容

Note

介紹 Mapping 類型,Solidity 中儲存鍵值對的數據結構

隨筆

格式

    mapping(_KeyType => _ValueType)

其中 _KeyType_ValueType 分別是 Key 和 Value 的變量類型

題目練習

  1. Q: 如果我们要声明一个mapping变量,记录不同地址的持仓数量,应该怎么做?
    A: mapping(address => address) public balanceof

  2. Q: 不可以作为mapping中键(key)的变量类型的是?
    A: struct

  3. Q: 可以作为mapping中值(value)的变量类型是?
    A: struct、string、address

  4. Q: Mapping的存储位置可以是?
    A: storage

  5. Q: 给映射变量map新增键值对的方法?
    A: map[_Key] = _Value

  6. Q: mapping变量是否存长度信息?
    A: