Solidity - Inheritance
Inheritance 상속 Solidity supports multiple inheritance. Contracts can inherit other contract by using the is keyword. 솔리디티는 다중 상속을 지원합니다. 계약은 is 키워드를 사용하여 다른 계약을 상속할 수 있습니다. Function that is going to be overridden by a child contract must be declared as virtual. 자식 계약에 의해 override 기능은 가상으로 선언되어야 합니다. Function that is going to override a parent function must use the keyword override. 부모계약을 overrid..
Programming Language/Solidity
2022. 12. 30. 22:09