Solidity - Calling Parent Contracts
Calling Parent Contracts 부모 계약 호출 Parent contracts can be called directly, or by using the keyword super. 부모 계약은 직접 호출하거나, super라는 키워드를 사용하여 호출할 수 있습니다. By using the keyword super, all of the immediate parent contracts will be called. 슈퍼라는 키워드를 사용함으로써, 즉각적으로 부모 계약이 호출될 것이다. // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /* Inheritance tree A / \ B C \ / D */ contract A { // This is cal..
Programming Language/Solidity
2023. 1. 4. 22:22