Get in touch with us! We’re here to assist you. Please fill out the form below, and we’ll respond to your inquiry as soon as possible.

Հաստատուններ

Հաստատությունները (Constants) փոփոխականներ են, որոնք հնարավոր չէ փոփոխել:

Դրանց արժեքը կոշտ կոդավորված է, և հաստատունների օգտագործումը կարող է խնայել գազի արժեքը:

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

contract Constants {
    // Կոդավորման կոնվենցիա մեծատառ հաստատուն փոփոխականներին
    address public constant MY_ADDRESS = 0x777788889999AaAAbBbbCcccddDdeeeEfFFfCcCc;
    uint public constant MY_UINT = 123;
}

Փորձեք Remix-ում

What are your feelings