gpt4 book ai didi

solidity - 如何访问具有数组类型值的 Solidity 映射?

转载 作者:行者123 更新时间:2023-12-04 15:42:43 28 4
gpt4 key购买 nike

我定义了一个映射类型的状态变量,例如映射(uint256 => uint256[])。我想将其公开,以便我可以从契约(Contract)外部访问它。但是,编译器报告错误 TypeError: Wrong argument count for function call: 1 arguments given but expected 2.。看起来映射的自动 getter 不返回数组。

例如ContractB是要构建的合约,

pragma solidity >=0.5.0 <0.6.0;

contract ContractB {
mapping(uint256 => uint256[]) public data;

function getData(uint256 index) public view returns(uint256[] memory) {
return data[index];
}

function add(uint256 index, uint256 value) public {
data[index].push(value);
}
}

创建测试合约以测试 ContractB,


import "remix_tests.sol"; // this import is automatically injected by Remix.
import "./ContractB.sol";

contract TestContractB {

function testGetData () public {
ContractB c = new ContractB();

c.add(0, 1);
c.add(0, 2);

Assert.equal(c.data(0).length, 2, "should have 2 elements"); // There is error in this line
}
}

不过,我可以在 ContractB 中创建一个返回数组的函数。

最佳答案

不幸的是,Solidity 还不能返回动态数组。

但是你可以一个一个的获取元素。为此,您需要将索引传递给 getter:

contract TestContractB {

function testGetData () public {
ContractB c = new ContractB();

c.add(0, 1);
c.add(0, 2);

// Assert.equal(c.data(0).length, 2, "should have 2 elements"); // Don't use this
Assert.equal(c.data(0,0), 1, "First element should be 1");
Assert.equal(c.data(0,1), 2, "Second element should be 2");
}
}

关于solidity - 如何访问具有数组类型值的 Solidity 映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57213842/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com