Solidity - Visibility
Visibility 가시성 Functions and state variables have to declare whether they are accessible by other contracts. 함수와 상태 변수는 다른 계약에 의해 접근 가능한지 여부를 선언해야 한다. Functions can be declared as 함수는 다음과 같이 선언할 수 있습니다 public - any contract and account can call 공개 - 모든 계약 및 계정이 호출할 수 있습니다 private - only inside the contract that defines the function 비공개 - 기능을 정의하는 계약 내에서만 가능 internal- only inside contract that in..
Programming Language/Solidity
2023. 1. 4. 22:29