Solidity 练习:Immutable
睡不醒的鲤鱼 2022-12-29 Web3 Solidity
一、题目说明
声明为 immutable 的变量就像常量一样,除了它们的值可以在构造函数内部设置。
二、任务列表
- 把状态变量 owner 更改为 immutable 的。
- 在构造函数中吧 owner 设置为 msg.sender。
三、解答代码
pragma solidity ^0.8.17;
contract Immutable {
address public immutable owner;
constructor() {
owner = msg.sender;
}
}
1
2
3
4
5
6
7
8
9
10
四、参考资料