remix 中,结构体显示为 tuple,使用'[]'标识一个对象;
合约示例:
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
contract tupleTest {
struct Man {
string name;
uint256 age;
}
Man[] persons;
constructor() {
persons.push(Man("name1",11));
persons.push(Man("name2",22));
}
// ["a1",1]
function addMan(Man memory man) public{
persons.push(man);
}
// [["a1",1],["a2",2]]
function addMen(Man[] memory men) public{
for(uint i=0;i<men.length;i++){
persons.push(men[i]);
}
}
function getMen() view public returns(Man[] memory){
return persons;
}
function getMen(uint id) view public returns(Man memory){
return persons[id];
}
}
在 remix 部署合约,并调用:文章来源:https://www.toymoban.com/news/detail-636367.html
文章来源地址https://www.toymoban.com/news/detail-636367.html
到了这里,关于第117篇 remix 中 struct 类型传参的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!