일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ethers typescript
- 러스트기초
- ethers websocket
- 티스토리챌린지
- SBT표준
- nest.js설명
- Vue
- 프록시배포구조
- 스마트컨트렉트프록시
- 스마트컨트렉트테스트
- 컨트렉트 배포 자동화
- 러스트 기초
- Vue.js
- 스마트 컨트렉트 함수이름 중복
- vue기초
- chainlink 설명
- 컨트렉트 동일한 함수이름 호출
- 머신러닝기초
- 오블완
- ambiguous function description
- 체인의정석
- ethers type
- ethers
- multicall
- 스마트컨트렉트 함수이름 중복 호출
- rust 기초
- 러스트 기초 학습
- git rebase
- 스마트컨트렉트 예약어 함수이름 중복
- ethers v6
Archives
- Today
- Total
체인의정석
Solidity 0.5.0 버전 ) constructor 안에서 상속해오는 컨트렉트의 생성자 넣어주는 방법 본문
728x90
반응형
https://docs.soliditylang.org/en/v0.5.0/contracts.html?highlight=constructor#constructors
constructor 안에서 상속해오는 컨트렉트의 생성자 넣어주는 방법
pragma solidity >=0.4.22 <0.6.0;
contract Base {
uint x;
constructor(uint _x) public { x = _x; }
}
// Either directly specify in the inheritance list...
contract Derived1 is Base(7) {
constructor() public {}
}
// or through a "modifier" of the derived constructor.
contract Derived2 is Base {
constructor(uint _y) Base(_y * _y) public {}
}
다음과 같이 상속받을 때 지정해주거나
constructor public 선언 전에 modifier 형태로 넣어주는 것이 가능.
나는 후자를 선택하였다.
728x90
반응형
'블록체인 > Solidity' 카테고리의 다른 글
Comments