[블체스 Part.3] 230516

이현진·2023년 5월 17일
0

BlockChain School

목록 보기
17/20

상속

super

나에게 상속해준 아이한테서 뭘 가지고오려고할때 씀

virtual, override 특정 함수 상속

contract DAD {
    function dad() virtual public pure returns(string memory) {
        return "dad from DAD";
    }
}

contract CHILD3 is DAD {
    function child() public pure returns(string memory) {
        return "child from CHILD";
    }

    function dad() override public pure returns(string memory) {
        return "dad from CHILD";
    }
}

visibility


사실 오늘 내용이 상당히 많고 복잡해서 내가 이걸 제대로 쓴 건지도 모르겠다. 복습을 열심히 해야할 것 같다ㅠㅠ

profile
https://github.com/lhjbg0821

0개의 댓글