문법 (1) 썸네일형 리스트형 접근 제어자 external 1. 외부 컨트랙만 호출 가능. 2. 상태 변수는 external 사용불가. pragma solidity ^0.4.23; contract Mycontract{ uint external count; //상태변수. 이것도 에러남. constructor() public { //... } function numOfStudent(address_teacher) public view return(uint) { test(); //에러남. 밑의 external붙은 함수를 같은 컨트랙내부에 있는 함수에서 호출했기 때문. } function test() external { //... } } contract YourContract { MyContract myContract; function callTest().. 이전 1 다음