智能合约 solidity-mapping.sol

pragma solidity ^0.8.3;
 contract Mapping{
 mapping(address =>uint)pubic myMap;
 function get(address _addr)pubic view returns(uint){
 return myMap[_addr];
 }
 function set(address _addr,uint _i)pubic{
 myMap[_addr]=-i;
 }
 function remove(address _addr)pubic{
 delete myMap[_addr];
 }
 }
contract NestedMapping{
mapping(address =>mapping(uint =>bool))pubic nested;

function get()address )addr1,uint _i}public view returns(bool){
return nested[_adddr1][_i];
}
function set(
address _addr1,
uint _i,
bool _boo
)public{
nested[_addr1][_i]=_boo;

}
function remove(address _addr1,uint _i)public{
delete nestedp[addr1][i];
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值