2018年12月7日

摘要: pragma solidity ^0.4.10; contract Delete{ /* delete可用于任何变量(除mapping),将其设置成默认值 bytes/string:删除所有元素,其长度变为0 bytes32:重置所有索引的值 mapping:什么都不会发生 mapping(key=>val... 阅读全文

posted @ 2018-12-07 17:54 eilinge 阅读(168) 评论(0) 推荐(0) 编辑

摘要: pragma solidity ^0.4.10; contract Byte{ bytes [] public T=new bytes[](3); function setLeng(uint len) public{ T.length=len; T.push('0x11'); } //bytes [5... 阅读全文

posted @ 2018-12-07 10:41 eilinge 阅读(600) 评论(0) 推荐(0) 编辑