DataType 数据类型
数据类型分为: 值类型, 引用类型.
值类型分为: bool, uint/int, address, bytes32
引用类型分为: array, mapping, struct, string, bytes, enum.
值类型的数据大小占用内存一定, 引用类型长度不确定, 大小可扩展.
涉及到引用类型, 一般会区分 storage, memory 指定存储区. 这个我们后面会讲到.
Last updated
Was this helpful?
数据类型分为: 值类型, 引用类型.
值类型分为: bool, uint/int, address, bytes32
引用类型分为: array, mapping, struct, string, bytes, enum.
值类型的数据大小占用内存一定, 引用类型长度不确定, 大小可扩展.
涉及到引用类型, 一般会区分 storage, memory 指定存储区. 这个我们后面会讲到.
Last updated
Was this helpful?
Was this helpful?