상세 컨텐츠

본문 제목

Solidity - Constructor

Programming Language/Solidity

by Yongari 2022. 12. 30. 22:00

본문

 

Constructor
생성자

A constructor is an optional function that is executed upon contract creation.
생성자는 계약 생성 시 실행되는 선택적 기능입니다.

Here are examples of how to pass arguments to constructors.
다음은 생성자에게 인수를 전달하는 방법의 예입니다. 

 

 

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

// Base contract X
// 기본 계약 X 
contract X {
    string public name;
	
    //생성자
    constructor(string memory _name) {
        name = _name;
    }
}

// Base contract Y
// 기본 계약 Y 
contract Y {
    string public text;

  	//생성자 
    constructor(string memory _text) {
        text = _text;
    }
}

// There are 2 ways to initialize parent contract with parameters.
// 파라미터로 부모계약을 초기화하는 2가지 방법

// Pass the parameters here in the inheritance list.
// 상속 목록의 여기에 매개 변수를 전달합니다.
contract B is X("Input to X"), Y("Input to Y") {

}

contract C is X, Y {
    // Pass the parameters here in the constructor,
    // similar to function modifiers.
    // 여기 생성자에서 매개변수를 전달합니다.
    // 함수 수식자와 유사합니다.
    constructor(string memory _name, string memory _text) X(_name) Y(_text) {}
}

// Parent constructors are always called in the order of inheritance
// regardless of the order of parent contracts listed in the
// constructor of the child contract.
// 부모 생성자는 항상 상속 순서로 호출됩니다.
// 부모 계약의 순서에 관계없이
// 자녀 계약의 작성자.

// Order of constructors called:
// 생성자의 순서:
// 1. X
// 2. Y
// 3. D
contract D is X, Y {
    constructor() X("X was called") Y("Y was called") {}
}

// Order of constructors called:
// 생성자의 순서:
// 1. X
// 2. Y
// 3. E
contract E is X, Y {
    constructor() Y("Y was called") X("X was called") {}
}

 

 

Try on Remix

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

Solidity - Shadowing Inherited State Variables  (0) 2022.12.31
Solidity - Inheritance  (0) 2022.12.30
Solidity - Events  (0) 2022.12.29
Solidity - Function Modifier  (0) 2022.12.28
Solidity - Error  (0) 2022.12.27

관련글 더보기