Arrays

不支持多維字元串數組 - Vyper

  • February 10, 2022

每當我嘗試製作字元串列表(二維數組)時,都會收到此錯誤Multidimensional String arrays are not supported。這是我嘗試過的程式碼:names: String[30][100]. 有誰知道如何提供幫助?(版本 0.3.1)

我想通了,我可以使用雜湊圖。

names: HashMap[uint256, String[30]]

引用自:https://ethereum.stackexchange.com/questions/120947