构造函数生成规则

发布时间 2023-03-29 20:59:51作者: 月夜魂归

笔记软件在2023/3/29 20:56:48推送该笔记

类似于下面方式

struct Student {
    uint256 id;
    uint256 score;
}
Student public student; // 初始一个student结构体

constructor(uint id,uint score){
    student.id = id;
    student.score = score;
}