상세 컨텐츠

본문 제목

Solidity - Constants

Programming Language/Solidity

by Yongari 2022. 12. 21. 21:42

본문

 

 

Constants are variables that cannot be modified.

상수는 수정할 수 없는 변수입니다.

 

Their value is hard coded and using constants can save gas cost.

값은 하드 코드화되어 있으며 상수를 사용하면 가스 비용을 절약할 수 있습니다.

 

 

// SPDX-License-Identifier: MIT
// 라이선스 명시
pragma solidity ^0.8.13;
// 솔리디티 버전 명시 

contract Constants {
    // coding convention to uppercase constant variables
    // 코딩 컨벤션 상수변수는 대문자로 만들기 
    address public constant MY_ADDRESS = 0x777788889999AaAAbBbbCcccddDdeeeEfFFfCcCc;
    uint public constant MY_UINT = 123;
}

 

리믹스 링크

'Programming Language > Solidity' 카테고리의 다른 글

Solidity - Reading and Writing to a State Variable  (0) 2022.12.21
Solidity - Immutable  (0) 2022.12.21
Solidity - Variables  (0) 2022.12.21
Solidity - Primitive Data Types  (0) 2022.12.19
Solidity - First Application  (0) 2022.12.19

관련글 더보기