solidity - constructor 的作用
访问量: 729
refer to: https://www.tutorialspoint.com/solidity/solidity_constructors.htm
1. 只能运行一次, 在部署时运行
2. constructor中的代码不会部署到网络上。运行一次就抛弃了。
3. constructor的类型只能是public 或者internal的。 如果是后者的话,该contract 是abstract
访问量: 729
refer to: https://www.tutorialspoint.com/solidity/solidity_constructors.htm
1. 只能运行一次, 在部署时运行
2. constructor中的代码不会部署到网络上。运行一次就抛弃了。
3. constructor的类型只能是public 或者internal的。 如果是后者的话,该contract 是abstract