Solidity 练习:Immutable

2022-12-29 Web3 Solidity

# 一、题目说明

声明为 immutable 的变量就像常量一样,除了它们的值可以在构造函数内部设置。

# 二、任务列表

  1. 把状态变量 owner 更改为 immutable 的。
  2. 在构造函数中吧 owner 设置为 msg.sender。

# 三、解答代码

// SPDX-License-Identifier: MIT
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

# 四、参考资料

Last Updated: 2023-01-28 4:31:25