构造函数生成规则
Posted 月夜魂归
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了构造函数生成规则相关的知识,希望对你有一定的参考价值。
笔记软件在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;
以上是关于构造函数生成规则的主要内容,如果未能解决你的问题,请参考以下文章