만약 두개 이상의 스마트 컨트랙트를 상속 받고, 그 두개 이상의 컨트랙트에 똑같은 함수가 있다고 가정 할 때, super를 쓰면 어떤 컨트랙트의 함수를 상속 받는지 알아보려고 함.
// SPDX-License-Identifier:GPL-30
pragma solidity >=0.7.0 <0.9.0;
contract Father {
event FatherName(string name);
function who() public virtual {
emit FatherName("LeeMinSang");
}
}
contract Mother {
event MotherName(string name);
function who() public virtual {
emit MotherName("JoMinHo");
}
}
contract Son is Father, Mother {
function who() public override(Father, Mother) {
super.who();
}
}
Father, Mother 컨트랙트의 who라는 함수가 잇고, 자신의 이름을 알려주는 이벤트가 있음.
Son 컨트랙트가 Father, Mother 컨트랙트를 순서대로 상속 받고,
who 함수를 오버라이딩 하여 super.who()를 호출할 경우 Mother의 것이 상속되어서 JoMinHo를 반환합니다.
위와 같은 이유는 Son is Father, Mother 이기 때문인데, Mother(최신)으로 상속 받았기에 JoMinHo가 반환됨.