0

我想在我的合同中包含一个内部方法,该方法允许在由参数命名的存储中创建一个新的 uint256。就像是:

function createUint (string memory _name) internal {
    /*
     * creates a new uint256 named _name in storage
     */
}

我的猜测是它需要内联汇编,但我不知道如何

4

1 回答 1

4

映射呢?

mapping(string => uint256) myMap;

function setValue(string memory name, uint256 value) internal {
    myMap[name] = value;
}
于 2019-09-17T07:51:36.270 回答