Siblearn Academy siblearn academy

Immutable

متغیرهای تغییرناپذیر مانند ثابت هستند.


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

contract Immutable {
    // coding convention to uppercase constant variables
    address public immutable MY_ADDRESS;
    uint256 public immutable MY_UINT;

    constructor(uint256 _myUint) {
        MY_ADDRESS = msg.sender;
        MY_UINT = _myUint;
    }
}

روی محیط توسعه ی Remix امتحان بکنید

  • Immutable.sol
  • بازگشت به لیست